Agent Gateway 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., "@Agent Gateway MCPlet Pi and ZCode inspect this repository read-only and compare their findings"
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 Gateway MCP
A Windows-native MCP gateway that lets any MCP-capable host orchestrate local coding-agent CLIs as external workers.
Windows 原生的通用 CLI Agent 网关。Codex、Claude Desktop 或其他支持 stdio MCP 的宿主,可以统一调度本机 ZCode、Kimi Code、Claude Code、Codex CLI 和 Pi Coding Agent。
Why
Route routine work to lower-cost plans/models and reserve the controller for hard decisions.
Compare different agent harnesses with the same task and permissions.
Keep asynchronous lifecycle, logs, cancellation, resume and workspace safety behind one MCP API.
Prefer structured CLI protocols; never inject into an already-open interactive TUI.
Related MCP server: windows-host-mcp
MCP tools
agents_list, agents_spawn, agents_status, agents_wait, agents_logs, agents_cancel, and agents_resume.
Legacy Kimi compatibility tools remain available: kimi_status, kimi_run, kimi_resume, and kimi_list_sessions.
Install
Requirements: Windows, Node.js 20+, and at least one supported Agent CLI already installed and authenticated.
git clone https://github.com/Kvxw1105/agent-gateway-mcp.git
cd agent-gateway-mcp
npm ci
npm run build
npm testAdd the built server to any stdio MCP host. Generic JSON:
{
"mcpServers": {
"agent-gateway": {
"command": "node",
"args": ["C:\\absolute\\path\\agent-gateway-mcp\\dist\\src\\index.js"]
}
}
}Codex TOML and generic JSON examples are in examples/. Restart the host after editing its MCP configuration.
Natural-language usage
The controller can translate requests such as:
“Let Pi inspect this repository without editing files.”
“让 Kimi 先定位问题;失败后再升级给 Codex。”
“Run the same read-only task with Pi and ZCode, then compare their harness behavior.”
“让两个 Agent 在各自 Git worktree 实现,最后只保留通过测试的方案。”
The reusable orchestration Skill is included under integrations/skills/agent-gateway-orchestrator. Install it for Codex, Claude Code, or both:
powershell -ExecutionPolicy Bypass -File scripts/install-skill.ps1 -TargetHost bothProvider configuration
The gateway auto-discovers common global npm layouts and executables on PATH. Override any provider without editing source:
Variable | Purpose |
| Executable for |
| JSON array inserted before normal CLI arguments |
| Default Codex model |
| Default Pi provider; defaults to |
| Default Pi model; defaults to |
| Windows user-environment key read for Pi; defaults to |
| Remove Anthropic endpoint overrides only for the Claude child process |
For a JavaScript CLI installed in an unusual location, set both command and prefix arguments:
$env:AGENT_GATEWAY_ZCODE_COMMAND = 'C:\Program Files\nodejs\node.exe'
$env:AGENT_GATEWAY_ZCODE_PREFIX_ARGS = '["C:\\tools\\zcode\\bin\\zcode.js"]'Secrets belong in the provider's credential store or Windows user environment. Do not put API keys in the repository, prompts, or MCP config.
Safety model
read-onlyis the default permission.Concurrent writes to the same ordinary directory are rejected.
Parallel writers must use separate Git worktrees and set
isolated_worktree=true.Cancellation terminates the task process tree on Windows.
Resume starts a new non-interactive process; it never writes into an open TUI session.
Kimi prompt mode lacks a hard read-only flag, so its read-only boundary is explicitly reported as mixed.
Task state is currently in-memory; provider session IDs may still be resumed after an MCP server restart.
Development
npm test
npm run typecheck
npm run smoke
npm auditThe upstream ecosystem audit is in docs/audits/2026-08-13-windows-agent-gateway-ecosystem.md.
Current architecture decisions, limitations, and the prioritized handoff roadmap are in .context/handoff/2026-08-13-agent-gateway-handoff.md.
License
Apache-2.0. The supported Agent CLIs are separate products with their own licenses and terms; this repository does not redistribute them.
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
- Alicense-qualityDmaintenanceA general-purpose MCP gateway that exposes your local CLI skills to any AI assistant.371MIT
- Alicense-qualityBmaintenanceAn MCP server that runs on Linux and gives an MCP agent (e.g. Claude Code) SSH access to a Windows machine — to build, test, run commands, transfer files, and drive long-running or interactive jobs.MIT
- Alicense-qualityAmaintenanceA Windows-first, dual-mode MCP bridge that delegates bounded work to Hermes Agent and a local Qwen model via an OpenAI-compatible endpoint, providing restricted batch or trusted full execution modes.MIT
- Flicense-qualityCmaintenanceSecure localhost MCP gateway that exposes project-scoped file/Git/search tools and controlled CLI agent adapters (Codex, Claude) with fixed argv for safe Windows-native agent work.
Related MCP Connectors
Self-hosted MCP gateway: turn any API, database or MCP server into AI connectors — no code.
Control plane for autonomous software labor. Agents claim objectives over MCP with audit trail.
A paid remote MCP for OpenAI Codex agent coordination MCP, built to return verdicts, receipts, usage
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/Kvxw1105/agent-gateway-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server