Launchable MCP server: there isn't one
Test selection is exactly the kind of prediction an agent would want to query, and neither Launchable nor CloudBees exposes it.
Last verified 1 September 2026 · from The launchableinc and cloudbees GitHub organizations and the official MCP registry
This page is one of 90 in a directory of monitoring and developer tools. Each page checks what an AI coding agent can get out of the tool through its MCP server, the connector that lets the agent query the tool directly.
Summary
Launchable has no MCP server. Its GitHub organization carries 12 public repositories and none of them is MCP-related.
Its acquirer does not fill the gap. A search of the cloudbees organization for MCP repositories returns zero results, and CloudBees' own hosted MCP server exposes no Smart Tests tools.
That leaves the predictive part unreachable. Launchable's value is deciding which subset of a test suite to run for a given change, and no tool returns that decision.
What is the Launchable MCP server, and is it usable?
Launchable, now sold as Smart Tests, uses machine learning over test history. It predicts which tests are most likely to fail for a given change, so a pipeline can run a subset instead of everything.
It works as a CLI inside the pipeline: the CLI records builds and test sessions, then returns a subset to run. That is the whole integration surface.
The product lives in the pipeline rather than in a queryable database. The missing server costs you nothing at run time. It costs you when someone asks why a test was skipped.
Every one of the 90 vendors in this directory gets the same four checks. Launchable passes 0 of them.
| Check | Result | Evidence |
|---|---|---|
| Official | Fail | No MCP server. The launchableinc GitHub organization has 12 public repositories and none is MCP-related, as of 26 August 2026. |
| Maintained | Fail | There is nothing to maintain, at Launchable or at CloudBees, which acquired it. |
| Distributed | Fail | No package, and no Launchable entry in the official MCP registry. |
| Usable | Fail | CloudBees, which acquired Launchable, publishes an MCP server. A search of the cloudbees organization for MCP repositories returns zero results, and the hosted CloudBees server carries no Smart Tests tools. |
Launchable works across code, tests and CI, and publishes nothing for any stage.
| Part of the work | What Launchable has here | Can an agent reach it |
|---|---|---|
| Code, tests & review | Test selection, flaky test insight, test session history | No. Test selection is the product, and no tool returns the prediction |
| CI & release | Subset selection inside a pipeline run | No. The CLI does this during the build; nothing exposes it as a tool |
| Production observability | None | No telemetry product, and no server |
| Agent observability & evals | None | No traces or evaluations, and no server |
| AI cost management | None | No spend data, and no server |
Launchable does not let an agent ask why a test was skipped. Launchable made that prediction and keeps the model that produced it. Its only interface is a CLI inside the pipeline, and a CLI cannot be queried.
What can an AI agent do with Launchable?
Launchable's acquisition can suggest MCP coverage that the product does not actually have.
CloudBees publishes an MCP server, and Smart Tests is not in it.
A search of the cloudbees GitHub organization for MCP repositories returns zero results, and CloudBees' hosted MCP server carries no Smart Tests or Launchable tools.
The launchableinc organization has 12 public repositories and none is MCP-related.
Guard: Check that a server names Smart Tests specifically. A CloudBees connector is not evidence that test selection is reachable.
Do you need the MCP server at all?
No, because Launchable publishes only a CLI. The CLI is the working route and the only one. It records builds and test sessions and returns the subset to run, all inside the pipeline, so the integration happens where the tests execute rather than where an agent asks questions.
For test results an agent can query afterwards, several vendors do publish servers. ReportPortal exposes 18 tools over launches, test items and logs. BuildPulse covers flaky tests in 5 tools, for under a thousand tokens. Allure TestOps documents 13 tools over test cases and results.
For flakiness specifically, which overlaps with what Launchable predicts, BuildPulse and Trunk both expose it, and Trunk labels three of its four tools experimental.
For the pipeline that runs the subset, Jenkins, CircleCI and Harness all publish maintained servers that explain why a build did what it did.
Keep Launchable in the pipeline through its CLI. Connect a test-results server when an agent needs to ask what happened.
Launchable MCP server setup
Nothing here installs a Launchable server, because there is none, and CloudBees publishes no Smart Tests tools either. This is the working route.
Launchable runs in the pipeline, not in a conversation. Its CLI selects the subset of tests to run for a change, and that stays where it is.
What an agent can have is the outcome: which tests ran, which failed, and how flaky they have been. Several vendors here publish servers for exactly that.
ReportPortal, for test results
ReportPortal publishes a first-party server against a project's runs, which is the closest an agent gets to asking what the last suite did.
The token is ReportPortal's own, and --analytics-off is its documented flag for suppressing usage reporting.
claude mcp add-json "reportportal" '{"command":
"reportportal-mcp-server",
"args":["--rp-host","https://rp.internal",
"--project","my-project","--analytics-off"],
"env":{"RP_API_TOKEN":"<your-token>"}}'BuildPulse, for flakiness
Where the question is which tests are unreliable rather than which failed, BuildPulse publishes a first-party server over exactly that.
The token is BuildPulse's own and bounds the projects the agent can read.
claude mcp add-json "buildpulse" '{"command":"npx",
"args":["-y","@buildpulse/mcp"],
"env":{"BUILDPULSE_TOKEN":"<your-token>"}}'Every other client
Each block below is the configuration for one client, with the file path and the key that client expects.
The prediction stays in the pipeline
Launchable's value is choosing which subset of a suite to run for a given change. No tool returns that decision, so an agent cannot ask why a test was skipped.
This is a statement of routes and involves no credentials. Keep the CLI where it is and read outcomes from a results server.
Launchable CLI -> which tests to run (not exposed) Results server -> what happened (reachable)
Read-only access, permissions and security
No Launchable credential is created
With no server, nothing here asks for a Launchable or CloudBees token.
Test results carry less sensitive data than most connectors do
Names, durations and pass rates carry little that is confidential, which makes this a comparatively safe connector to attach.
Failure output is the exception
Stack traces and assertion messages can contain fixture data, hostnames and occasionally secrets, and those reach the model with the result.
--analytics-offis worth settingReportPortal documents it, and turning usage reporting off is the right default when an agent is driving the queries.
Scope the token to one project
Both servers read whatever their token allows, so a project-scoped credential keeps an agent inside the suite you meant.
Troubleshooting
- You cannot find a Launchable MCP server
- There is not one. The
launchableincorganization holds 12 public repositories and none is MCP-related, as of 26 August 2026. - CloudBees acquired Launchable, so its server should cover Smart Tests
- It does not. A search of the
cloudbeesorganization for MCP repositories returns zero results, and the hosted CloudBees MCP server carries no Smart Tests tools. - `launchableinc.com` redirects and you cannot find the documentation
- The domain redirects to CloudBees, which is where the product went. That redirect is a sign of the acquisition rather than of a connector living elsewhere.
- You want the test-selection decision inside an agent conversation
- No tool returns it. Launchable's value is choosing which subset of a suite to run for a given change, and that prediction is not exposed over MCP.
Launchable MCP server: Reference
| Item | Value |
|---|---|
| Server published | None |
Public repositories in launchableinc | 12 |
MCP repositories in launchableinc | 0 |
MCP repositories in cloudbees | 0 |
| Smart Tests tools on the CloudBees hosted server | None |
launchableinc.com | Redirects to CloudBees |
| Official MCP registry results for Launchable | None |
| What is unreachable | The test-selection prediction for a given change |
| Checked | 1 September 2026 |
What engineers report
The searches cover both the original vendor and the acquirer, because the second is the likelier source of a false positive.
| What was checked | What it shows |
|---|---|
Public repositories in launchableinc | 12 |
MCP repositories in launchableinc | 0 |
MCP repositories in cloudbees | 0 |
| Smart Tests tools on the CloudBees hosted server | None |
| Official MCP registry results for Launchable | None |
The launchableinc and cloudbees GitHub organizations were both searched for MCP repositories on 1 September 2026, returning zero in each case. The official MCP registry has no Launchable entry.
Should you connect an agent to Launchable?
No. There is nothing to connect. Best for the CLI in the pipeline, plus a test-results connector for questions after the run.
- Strongest fit
- Teams running Smart Tests in a pipeline who do not need to query it afterwards.
- Main advantage
- Launchable's advantage stays inside the pipeline: the CLI returns the subset to run without any connector at all.
- Main weakness
- The test-selection decision, which is the product's whole output, cannot be queried.
- Operational risk
- Reading test results and mistaking them for Launchable's selection. The prediction is not in them.
From Oodle
One platform for agent traces and infrastructure
Agent traces usually sit in a different product from the rest of your telemetry, so when a slow database makes an agent slow the symptom is in one tool and the cause is in another. Oodle keeps both in one query surface, from $10 per million spans.
See agent observabilityFrequently asked questions
Does Launchable have an MCP server?
No. The launchableinc organization has 12 public repositories and none is MCP-related, and the official registry has no entry.
Does CloudBees expose it, since it acquired Launchable?
No. A search of the cloudbees organization for MCP repositories returns zero results, and its hosted server carries no Smart Tests tools.
How do I use Launchable then?
Through its CLI inside the pipeline. It records builds and test sessions and returns the subset of tests to run.
What can an agent query instead?
Test results, through ReportPortal, Allure TestOps or BuildPulse. None of them predicts a subset, but all of them explain what ran and what failed.