agent-mcp-hub
Provides a tool to delegate prompts to OpenAI's Codex CLI, enabling coding tasks to be executed by Codex, and can use Codex as a runner or reviewer in change reviews.
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., "@agent-mcp-hubRun all agents in parallel: explain the retry logic in src/exec.ts"
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.
agent-mcp-hub
One MCP server that bridges multiple CLI coding agents — Codex, Cursor, OpenCode, Claude, and Antigravity — into any MCP client.
stdio only — by design. The hub ships no Docker image and no HTTP transport (both were removed during the 0.5.x line). A containerised or remote server cannot see the caller's repository path and cannot reuse the caller's CLI logins — it would break the product contract on both halves. The hub runs as a child process of your MCP client, on your machine, as you.
Tools
Tool | Description |
| Delegate a prompt to |
| Delegate a prompt to |
| Delegate a prompt to |
| Delegate a prompt to the Claude Code CLI (prompt piped via stdin) |
| Delegate a prompt to Google Antigravity ( |
| Same prompt to all agents in parallel, results side by side |
| Which agent CLIs are installed and on PATH |
| Health check |
Agent tools accept prompt (required), model, cwd, timeoutMs (total runtime
cap, default 1800000 = 30 min), and idleTimeoutMs (inactivity cap, default 300000
= 5 min). See Long-running tasks & timeouts.
Known limitation: opencode prompts may not start with - (its CLI could parse
them as flags); the tool returns an actionable error instead of guessing.
Choosing models per agent
Model ids are agent-specific and do not overlap. o3 means nothing to
agy, gemini-3.6-flash-low means nothing to codex, and opencode namespaces
its own (opencode/big-pickle). So a single model value is valid for at most
one agent in a fan-out.
run_alltakesmodels— a per-agent map. Agents you don't list fall back tomodel, then to their own CLI default.review_changetakesrunnerModelandreviewerModel, so the agent writing the change and the agent judging it can use different engines and tiers.modelremains a fallback for both.
{
"tool": "run_all",
"arguments": {
"prompt": "Explain the retry logic in src/exec.ts",
"models": { "codex": "o3", "agy": "gemini-3.6-flash-low", "claude": "haiku" }
}
}An unknown agent name in models is rejected with the list of enabled agents —
a typo never silently falls back to the default model.
Where to find valid ids: opencode models, cursor-agent models and
agy models list them. codex and claude have no such command — codex reads
its default from ~/.codex/config.toml, and claude accepts the documented
aliases (opus, sonnet, haiku, fable). Note claude models is not a
subcommand: it is treated as a prompt, so its "model list" is generated text,
not a source of truth.
Error handling
When a wrapped CLI fails, the hub classifies the failure and returns a clean,
ANSI-free, actionable isError result — never a raw terminal dump — naming the
class and the exact fix:
Class | Example remediation |
| install the CLI (e.g. |
|
|
| set a model/provider in the CLI's config |
| raise |
| the agent reached the network but its stream keeps dropping (e.g. |
| retry shortly (upstream rate-limit, or the local agent-spawn queue is full) |
| generic non-zero exit — the message includes |
For example, an unauthenticated cursor no longer returns its ANSI "press any
key to sign in" banner — it returns cursor is not authenticated … Fix: run cursor-agent login``.
Review a change (review_change)
Runs a runner agent in a git cwd to make a change, captures the actual
git diff of what changed, then has a reviewer agent judge that diff. Returns
the runner's output, the diff (--stat), and a PASS / WARN / FAIL verdict
with findings.
Inputs: runner, reviewer (agent names), prompt, cwd (must be a git
worktree), optional runnerModel, reviewerModel, model (fallback for both),
timeoutMs.
Key notes:
Cross-agent by design — e.g.
codexwrites,claudereviews.Returns the concrete diff that the plain agent tools don't expose.
Newly-created (untracked) files are surfaced to the reviewer with their contents (bounded: 64 KiB per file, 50 files; excess is truncated and flagged).
git diffalone would omit them entirely.If the worktree was already dirty, the diff may include pre-existing changes (noted in the output).
Complements — does not replace — client-side stop-hooks or PR-time CI review.
The confirm gate (
MCP_CONFIRM) applies.The reviewer runs least-privilege — but how much that guarantees depends on the agent. The reviewer's prompt embeds an attacker-influenced diff, so it is run read-only rather than with the write grant the runner gets. Only two of the five are real restrictions:
Reviewer
Read-only mechanism
Enforced?
codex-s read-onlyYes — OS-level sandbox
claude--disallowedTools Write,Edit,…,BashYes — harness-level deny
cursor--trust --mode plan(no--force)No — model-advisory only
agypermission grant withheld
Partly — headless auto-deny, not a sandbox
opencodenone available
No — unrestricted
Pick
codexorclaudeas the reviewer if you want the restriction to be real. This is defense-in-depth alongside the nonce-fenced diff and the throwaway temp cwd; none of it is a sandbox.
{
"tool": "review_change",
"arguments": {
"runner": "codex",
"reviewer": "claude",
"prompt": "Add retry with exponential backoff to the API client",
"cwd": "/Users/you/projects/my-app"
}
}Related MCP server: consult-mcp
Prerequisites
Install and authenticate the CLIs you want to use (any subset works):
Codex:
npm i -g @openai/codex && codex loginCursor:
curl https://cursor.com/install -fsS | bash && cursor-agent loginOpenCode:
npm i -g opencode-ai && opencode auth loginClaude Code:
npm i -g @anthropic-ai/claude-code && claude(first run logs in)Antigravity: install the Antigravity CLI (e.g.
brew install --cask antigravity-cli), then runagyonce and sign in — it has nologinsubcommand and stores credentials in the OS keyring, so there is no API-key env var to set
Install
Recommended — global install (fast, reliable startup): install the pinned
version once, then point your client at the agent-mcp-hub binary. Startup is
instant and the client connects reliably.
npm i -g agent-mcp-hub@0.5.0Claude Code
claude mcp add agent-hub -- agent-mcp-hubCursor / generic mcp.json
{
"mcpServers": {
"agent-hub": {
"command": "agent-mcp-hub"
}
}
}Zero-install alternative (npx)
No global install, but npx re-resolves the package on every launch, so first start is slower and can occasionally trip a client's connection-probe timeout (the server itself is fine — just retry). Prefer the global install for a persistent setup.
claude mcp add agent-hub -- npx -y agent-mcp-hub@0.5.0
# mcp.json: "command": "npx", "args": ["-y", "agent-mcp-hub@0.5.0"]Pre-release / fallback: To test an unreleased commit, run directly from GitHub:
npx -y github:blackaxgit/agent-mcp-hub#<tag-or-sha>. This builds from source on first fetch, so under npm v12+ you must allow thepreparescript.
Configuration
MCP_AGENTS — comma-separated allowlist of the agents to expose
(codex,cursor,opencode,claude,agy). Unset or empty exposes all agents. Disabled
agents get no tool and are absent from list_agents/run_all. An unknown name
fails at startup with an error listing the valid names, so typos never silently
disable an agent.
For stdio, set it in the client's mcp.json:
{
"mcpServers": {
"agent-hub": {
"command": "npx",
"args": ["-y", "agent-mcp-hub@0.5.0"],
"env": { "MCP_AGENTS": "codex,claude" }
}
}
}Confirm before running an agent — MCP_CONFIRM
Set MCP_CONFIRM=1 (values 1/true/on/all; default off) to require a
confirmation before any agent tool — and run_all — actually spawns a CLI. The
server sends a brief summary (agent · prompt · cwd · model) and waits: accept
runs the agent, decline runs nothing and returns a terminal cancellation.
This uses the standard MCP elicitation capability, so it is client/IDE-agnostic — it works with any MCP client that supports form elicitation (Claude Code, Cursor, VS Code, Zed, Windsurf, custom SDK clients, …); the gate keys on the protocol capability, never a product name. Clients that don't support elicitation transparently run without a prompt (no hang, no error).
{
"mcpServers": {
"agent-hub": {
"command": "npx",
"args": ["-y", "agent-mcp-hub@0.5.0"],
"env": { "MCP_CONFIRM": "1" }
}
}
}Long-running tasks & timeouts
A complex agent task can run for many minutes. The hub bounds each run with two independent timers so a productive long run survives while a genuinely stuck one fails fast:
Idle (inactivity) timeout —
idleTimeoutMs(per call) /MCP_AGENT_IDLE_TIMEOUT_MS(env), default 300000 (5 min). The timer resets on every chunk of output the CLI produces, so an agent that keeps working (streaming output) never trips it. An agent that goes silent — e.g.opencodestuck on an unreachable model backend — is killed after the idle window with an actionable "no output — the agent may be hung or its model/backend is unreachable" error, instead of burning the full cap.Total runtime cap —
timeoutMs(per call) /MCP_AGENT_TIMEOUT_MS(env), default 1800000 (30 min). A hard upper bound regardless of activity.
Whichever fires first kills the agent's process group. Tradeoff: the idle reset
assumes the CLI streams intermediate output. codex and opencode do; claude -p,
cursor-agent -p and agy --print may emit only the final result, so a long
silent task on those can be idle-killed at 5 min — raise idleTimeoutMs /
MCP_AGENT_IDLE_TIMEOUT_MS for such tasks, or rely on the total cap.
agy is the strongest case here: it emits its entire answer in one flush at the
end (measured — every line of a 12-line reply arrived at the same instant), and
the hub raises its internal --print-timeout to 48h so that agy's own 5-minute
default can never truncate a run. The idle timer is therefore agy's only
protection against a genuine hang; budget idleTimeoutMs accordingly for long
autonomous agy tasks.
While an agent runs, the hub emits MCP progress notifications to clients that
request them (_meta.progressToken) — live feedback during long runs. Note: on
Claude Code (stdio) the per-server request timeout in .mcp.json (or the
MCP_TOOL_TIMEOUT env var it honors) is a hard wall-clock that progress does
not reset (default ~28h) — raise it if you lowered it below your longest run.
Upgrading
Global install: install the new version — the pinned agent-mcp-hub command
in your MCP config picks it up on the next client start:
npm i -g agent-mcp-hub@0.6.0npx (pinned): bump the pinned version in your MCP config — e.g. change
agent-mcp-hub@0.5.0 to agent-mcp-hub@0.6.0 everywhere.
Always-latest (not recommended for shared configs): use agent-mcp-hub@latest
instead of a pinned version. Note that npx caches by version — it may serve a
stale copy. Force a fresh fetch with npx --prefer-online agent-mcp-hub or
npx clear-npx-cache.
Pinning is reproducible and recommended for team-wide or checked-in
mcp.json files.
Development
npm install
npm test # vitest
npm run typecheck # strict TS over src + tests
npm run dev # run from source over stdio
npm run build # emit dist/Architecture
Pure adapters (src/adapters/* — prompt → {args, stdin?}, no I/O) → one
subprocess boundary (src/exec.ts) → MCP stdio server (src/server.ts). Adding
an agent = one ~15-line adapter file + one line in src/registry.ts.
License
Mozilla Public License 2.0 (MPL-2.0).
Versions before 0.5.2 were released under the MIT license; that grant stands for those versions. MPL-2.0 applies from 0.5.2 onward.
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
- AlicenseAqualityFmaintenanceProvides unified access to multiple CLI AI agents (Codex, Gemini, Claude, and OpenCode) through a single MCP interface with real-time task monitoring, enabling specialized code analysis, UI design, implementation, and prototyping workflows.Last updated1121MIT
- AlicenseAqualityCmaintenanceMCP server orchestrating local CLI agents (Claude Code, OpenAI Codex, Google Gemini) for cross-validation, second opinions, and persona-driven prompting.Last updated18MIT
- Flicense-qualityAmaintenanceMCP server that bridges coding agents (Claude Code, Codex, Gemini CLI) via ACP for pair programming, enabling agents to consult each other as tools.Last updated
- Alicense-qualityFmaintenanceEnables orchestrating multiple AI CLI agents (Claude Code, Codex, Gemini CLI, Copilot CLI) through a unified MCP interface for task delegation, cross-agent comparison, and specialized tools like code review and debugging.Last updated2814MIT
Related MCP Connectors
Real-time chat hub for AI agents — Claude Code, Cursor, Cline, Codex over MCP or REST.
Real-time chat hub for AI agents — Claude Code, Cursor, Cline, Codex over MCP or REST.
User-owned memory for AI agents, Copilot, Claude, IDEs, CLIs, and chat apps over remote MCP.
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/blackaxgit/agent-mcp-hub'
If you have feedback or need assistance with the MCP directory API, please join our Discord server