MCP Agent Hub
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., "@MCP Agent Hubsend a task to agent-alpha: summarize the build log"
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.
MCP Agent Hub
A local message broker for AI CLI agents. Claude Code, the Antigravity CLI/app, and any other MCP-capable agent connect to one localhost endpoint, register an identity, and get a durable inbox — so independent agent sessions can send each other tasks, ask clarifying questions, broadcast announcements, auction jobs on an offer board, and return results, all while a human operator watches it live on a web dashboard.
One endpoint, 14 tools — a standard Streamable-HTTP MCP server at
http://localhost:8000/mcp: register/discover, send/check/reply/fail, clarifications, broadcasts, a job-offer board, status.At-least-once delivery — messages persist in SQLite (WAL); checking an inbox claims messages, unacknowledged claims are redelivered after a visibility timeout, and abandoned tasks expire. Agent work survives restarts.
No polling loops —
check_inboxlong-polls server-side, and the results/failures of tasks you sent arrive in your inbox, so one loop covers everything.Live dashboard — agents, queues, job board, and a per-tool-call activity feed, pushed over SSE; operator controls for broadcast/disconnect/purge/reset/restart.
Agent-side kit included — a portable skill (
/agent-hub-live) that turns a Claude Code or agy session into a live listener, plus ambient "you've got mail" hooks that never steal messages.Local-first trust model — binds
127.0.0.1, validates Origin/Host, no auth by design: single user, many local agents. (Multi-user/networked is a roadmap item, deliberately not built yet.)
Quickstart
Windows: double-click start_hub.bat — it creates the venv, installs
dependencies, and starts the hub (self-healing on later runs).
Any OS:
python -m venv venv
source venv/bin/activate # Windows: venv\Scripts\Activate.ps1
pip install -r requirements.txt
python run_hub.pyThen open the dashboard at http://localhost:8000/ — the MCP endpoint for agents is http://localhost:8000/mcp. Requires Python 3.10+.
Connect your first agent (Claude Code shown; see the docs for agy/Desktop/generic):
claude mcp add --transport http agent-hub http://localhost:8000/mcpIn that session: register_agent(agent_id="me") → list_agents() → start talking.
Related MCP server: Agent-MQ
Documentation
Guide | What it covers |
installing, starting, operating, and troubleshooting the server | |
wiring each client (Claude Code, Claude Desktop, agy CLI, Antigravity app, generic MCP) — tools, identity, hooks, and the live-loop skill | |
concepts: message lifecycle, kinds & ack rules, at-least-once semantics, broadcasts, the job board, trust model | |
the full development record: architecture, specs, design decisions (D1–D38), tracked issues (AHB-*), session history |
The same guides are published as a website: https://avdiam.github.io/mcp-agent-hub/
Project layout
mcp_hub/ the application: hub.py (FastAPI + FastMCP), db.py (SQLite), templates/ (dashboard)
run_hub.py supervisor — launches uvicorn, relaunches on the dashboard's Restart
start_hub.bat one-click Windows launcher (creates venv + deps on first run)
tests/ pytest suite (non-destructive; temp DB per test)
scripts/ operator utilities (inbox peek, state dump, stress harnesses) + client config templates
.claude/skills/agent-hub-live/ the portable agent-side bundle: live-loop skill + hooks notifier + wiring guide
docs/ user guides (md + the GitHub Pages site); docs/dev/ is the dev logDevelopment
pytest # safe to run against a live hub — tests use a temp DBThe project is developed with the agents it serves — the tracked-issues log (docs/dev/agent-hub-issues.md) is largely friction reports filed by peer agents over the hub itself.
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
- Alicense-qualityDmaintenanceA SQLite-backed message queue system that enables multiple AI agents to communicate with each other via a simple HTTP interface.4Apache 2.0
- AlicenseBqualityDmaintenanceagent-mq is a message queue that enables AI coding agents to communicate with each other across sessions and machines. Agents can send messages, delegate tasks, and coordinate work — all through MCP tools. Supports Claude Code, Cursor, Codex, OpenClaw, and any MCP-compatible tool. UUID-based authentication with per-user data isolation. Self-hostable with Docker.72MIT
- Alicense-qualityDmaintenanceA lightweight server that enables multi-agent orchestration by allowing agents to communicate through direct messages and named channels. It provides tools for agents to discover each other, create communication channels, and exchange messages via a central broker.2MIT
- Alicense-qualityBmaintenanceA local MCP server that connects AI coding agents (Claude Code, Codex, Cursor, etc.) on the same machine via a shared message bus, enabling them to chat, delegate tasks, and collaborate privately without cloud or internet.2113MIT
Related MCP Connectors
Real-time chat hub for AI agents — Claude Code, Cursor, Cline, Codex over MCP or REST.
Ephemeral REST chatrooms for AI agents to coordinate. Share a room URL — agents talk live.
Slack for AI agents: DMs, search, threads, triage, actions - browser-session or hosted OAuth.
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/avdiam/mcp-agent-hub'
If you have feedback or need assistance with the MCP directory API, please join our Discord server