AdaptOrch MCP
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@AdaptOrch MCProute a task topology for the new deploy"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
AdaptOrch MCP
AdaptOrch MCP is the public MCP wrapper for AdaptOrch: a reliability kernel that lets Claude Code route tasks, launch orchestrated runs, and pull evidence artifacts back into the chat.
Use it when a coding task is too large, too ambiguous, or too expensive to trust to one single-pass response.
Claude Code → AdaptOrch MCP → route topology → run with synthesis → retrieve artifactsGet your API key
AdaptOrch requires authentication. Get your token in two steps:
Sign up → adaptorch.com/app/signup
Create an API key → adaptorch.com/app/api-keys → generate a key (starts with
ado_)
Use that key as ADAPTORCH_CONTROL_PLANE_TOKEN:
export ADAPTORCH_CONTROL_PLANE_TOKEN="ado_..."Signup → MCP → dashboard run list
Sign up at
/app/signupand open/app/api-keys.Generate an
ado_*key and copy the raw value once.Set it only in your local MCP environment as
ADAPTORCH_CONTROL_PLANE_TOKEN.Run
adaptorch_runoradaptorch_list_runsfrom Claude Code.Refresh
/app/runsin the dashboard to see the same tenant's run list.
한국어 요약: 가입 → /app/api-keys에서 ado_* 생성 → MCP env에 설정 → Claude Code에서 실행/목록 확인 → 대시보드 /app/runs에서 같은 실행 목록 확인.
Token | Purpose | Where to get it |
| All AdaptOrch API calls (run, status, artifacts) | Dashboard after signup |
| Protect your local HTTP MCP endpoint | You define it (any secure string) |
Starter $0 includes API key access, 1,000 calls/month, and shadow mode. See adaptorch.com for Pro/Team plans.
Engine-delegated optional algorithm controls (latest)
AdaptOrch MCP forwards optional algorithm controls to the installed adaptorch
engine. The wrapper does not implement these algorithms. Treat these as
benchmark/eval or operator controls, not quickstart defaults.
Control | Scope | Verified behavior |
| Benchmark/eval beta | Fixes benchmark clock/RNG sources and canonicalizes record timing/path fields. It does not cover live-provider outputs, parallel-suite record order, cassettes, traces, or report timing aggregates. |
| Benchmark manifest | Importable as |
| Online router |
|
| Online-router learning |
|
| Synthesis | Default is |
| Routing threshold | Auto-enables when at least two ensemble providers exist and synthesis mode is not |
| Synthesis | Supported modes are |
| Ensemble extraction | Engine extractors are |
Related MCP server: Orchestrator MCP Server
Research paper
AdaptOrch MCP follows the AdaptOrch research line. Read the paper on arXiv:
Abstract page: arxiv.org/abs/2602.16873
HTML paper: arxiv.org/html/2602.16873v1
Install
pip
pip install adaptorch-mcpIf AdaptOrch core is not yet on PyPI, install it from GitHub first:
pip install "adaptorch[api] @ git+https://github.com/dmae97/adaptorch.git"
pip install adaptorch-mcpuvx (one-shot, no install)
uvx adaptorch-mcp --helpWith the adaptorch dependency from GitHub:
uvx --with "adaptorch[api] @ git+https://github.com/dmae97/adaptorch.git" adaptorch-mcp --helpWhy Claude Code users feel it quickly
First-run win | Tool | What changes in the chat |
Less proof ambiguity |
| Claude can inspect a bounded Correctness Wall view without exposing selector internals or treating |
Fewer failed long tasks |
| Large goals move through AdaptOrch routing, synthesis, and telemetry instead of one brittle pass. |
Evidence without context switching |
| Outputs, traces, and run proof come back into the Claude Code conversation. |
Safer setup support |
| Users can paste redacted diagnostics without leaking tokens. |
Fast install loop |
| Local MCP wiring is verified with |
Scenario benchmark projection
Architecture
Packages
Path | Package | Purpose |
|
| Python CLI wrapper around |
The wrapper intentionally delegates runtime behavior to adaptorch.mcp_server. That keeps MCP tools, resources, prompts, safety checks, and transports aligned with the latest AdaptOrch core release.
Quickstart
Local development
git clone git@github.com:dmae97/Adaptorch-MCP.git
git clone git@github.com:dmae97/adaptorch.git # alongside Adaptorch-MCP
cd Adaptorch-MCP
uv sync --all-packages --extra dev
uv run adaptorch-mcp --helppyproject.toml pins the engine to the published adaptorch git revision. To validate the
wrapper against a local engine checkout (algorithm-parity runs), install it over the pin:
make engine-local ENGINE_PATH=../adaptorch
make checkpackages/adaptorch-mcp/tests/test_engine_algorithm_parity.py fails closed when the exposed
synthesis modes, deprecated aliases, topologies, or output extractors drift from the engine.
stdio MCP
Use stdio for local clients such as Claude Code or desktop MCP hosts.
export ADAPTORCH_CONTROL_PLANE_TOKEN="<your-token>"
adaptorch-mcp --transport stdio --base-url https://adaptorch.comHTTP MCP
Use HTTP for local gateways, reverse proxies, or remote MCP clients.
export ADAPTORCH_CONTROL_PLANE_TOKEN="<upstream-adaptorch-token>"
export ADAPTORCH_MCP_HTTP_AUTH_TOKEN="<client-facing-mcp-token>"
adaptorch-mcp \
--transport http \
--base-url https://adaptorch.com \
--http-host 127.0.0.1 \
--http-port 8765Authenticated health check:
python - <<'PY'
import os
from urllib.request import Request, urlopen
request = Request(
"http://127.0.0.1:8765/mcp/health",
headers={"Authorization": f"Bearer {os.environ['ADAPTORCH_MCP_HTTP_AUTH_TOKEN']}"},
)
with urlopen(request) as response:
print(response.read().decode("utf-8"))
PYCLI and environment reference
Command | Purpose | Important options |
| Start the stdio or HTTP MCP server. | `--transport stdio |
| Print redacted local diagnostics. |
|
| Verify stdio |
|
For adaptorch-mcp, the public wrapper resolves the control-plane URL in this
order: explicit --base-url, then trimmed/validated
ADAPTORCH_CONTROL_PLANE_BASE_URL, then the hosted fallback
https://adaptorch.com. adaptorch-mcp-smoke keeps a local-dev fallback of
http://127.0.0.1:8000 when no base URL is configured. Pass --base-url
explicitly in checked-in MCP client configs for reproducible behavior.
Variable | Purpose | Notes |
| Upstream AdaptOrch token. | Required unless |
| Base URL used when | Trimmed and validated as HTTP(S); do not embed credentials. |
| Client-facing bearer token for HTTP/SSE MCP. | Keep separate from the upstream control-plane token. |
| Comma-separated HTTP origin allowlist. | Use with browser or remote HTTP clients. |
| Maximum accepted HTTP request body size. | Keep bounded for public deployments. |
| HTTP request timeout budget. | Applies to HTTP server request handling. |
| Maximum concurrent SSE subscribers. | Defaults are provided by |
| Control-plane client timeout for app-factory usage. | Useful when embedding the ASGI app. |
| Benchmark/eval reproducibility beta. | Benchmark/eval scope only; not general runtime determinism. |
| Online-router learned-model gate. |
|
| Paper-mode lexical/semantic blend. | Default |
Claude Code MCP config
{
"mcpServers": {
"adaptorch": {
"command": "adaptorch-mcp",
"args": [
"--transport",
"stdio",
"--base-url",
"https://adaptorch.com"
],
"env": {
"ADAPTORCH_CONTROL_PLANE_TOKEN": "${ADAPTORCH_CONTROL_PLANE_TOKEN}"
}
}
}
}More templates:
examples/claude_desktop_config.jsonexamples/omk.mcp.jsonexamples/mcp-http.env.example
Checked-in examples use placeholders or environment interpolation. Fill real URLs and tokens only in local, uncommitted config files.
Diagnostics
Print redacted local diagnostics:
adaptorch-mcp-doctor
adaptorch-mcp-doctor --json
adaptorch-mcp-doctor --strictRun a stdio smoke test. The token is passed through the child environment, not process arguments. If no base URL is supplied, smoke targets http://127.0.0.1:8000 for local development.
export ADAPTORCH_CONTROL_PLANE_TOKEN="<your-token>"
adaptorch-mcp-smoke --base-url https://adaptorch.comExpected JSON includes "ok": true, adaptorch_plan_catalog, and the expected
core tool subset. Doctor JSON also includes redacted controlPlane metadata for
the resolved base-url source. Add repeatable --expected-tool <name> flags when
validating a specific hosted/core release.
Tool surface
Tool | Purpose |
| Submit an AdaptOrch task payload and optionally wait. |
| Read a run summary and its optional bounded Correctness Wall view by |
| Read artifact metadata for a run. |
| List recent runs. |
| Read execution traces ( |
| Request run cancellation (write/destructive; keep manually approved). |
| Locally route a DAG through AdaptOrch's topology router ( |
| Read redacted MCP server metrics. |
| Read synthesis modes (with deprecated aliases), topologies, output extractors, connectors, and server features. |
| Read the calling tenant's usage window (plan level, period, used, limit, remaining, percentage). |
| Read hosted plan catalog: Starter |
The default remote profile exposes the nine tools other than adaptorch_get_traces and adaptorch_route_topology. adaptorch_get_run publishes a closed outputSchema and safe structuredContent; its optional correctness_wall is advisory observability, not a correctness proof, selector decision, or apply authorization.
For trusted local clients, auto-approve only tools whose outputs are safe for
that client. Keep adaptorch_run and adaptorch_cancel_run manually approved.
For shared or production clients, avoid auto-approving run, artifact, and trace
readers unless those payloads are already sanitized.
Branding assets
GitHub hero:
assets/readme-hero.pngGitHub flow diagram:
assets/mcp-flow.pngGPT-image-2.0 raster prompt brief:
docs/brand/gpt-image-2-brief.md
Public release checklist
Before publishing:
uv run ruff check packages/adaptorch-mcp
uv run mypy packages/adaptorch-mcp/src
uv run pytest packages/adaptorch-mcp/tests -q
uv run python -m build packages/adaptorch-mcp --outdir dist
uv publish --dry-run dist/*Then follow docs/publishing.md for PyPI Trusted Publishing or token-based uv publish.
Security
Never commit .env, API keys, bearer tokens, private keys, or MCP client tokens. See SECURITY.md.
License
Proprietary — Copyright EGG. All rights reserved. See LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseBquality-maintenanceBridges Claude Code to a Cloud Orchestrator API, providing access to multi-AI consensus, web search, code execution sandboxes, long-term memory, knowledge graphs, deployment management, and 20+ integrated AI and developer tools.Last updated28
- Alicense-qualityCmaintenanceCoordinates up to 64 parallel expert agents for complex multi-agent orchestration and intelligent task routing within Claude Code. It enables users to analyze requests, manage hierarchical execution plans, and monitor active orchestration sessions.Last updatedMIT
- Alicense-qualityCmaintenanceOrchestrates parallel Claude Code worker swarms with protocol-based behavioral governance for multi-hour autonomous coding sessions.Last updated83111MIT
- Alicense-qualityAmaintenanceEnables multiple Claude Code sessions to communicate and share results automatically, with optional orchestration for hands-off workflow coordination.Last updated9MIT
Related MCP Connectors
Cross-agent artifact workspace with provenance across Claude Code, Codex, Cursor, LangGraph.
Reliable async execution for agent tool calls: schema gating, retries, idempotency, audit trail.
Adaptive plan/build/review cycles for AI coding assistants, persisted across sessions.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/dmae97/Adaptorch-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server