agent-mesh-mcp
Provides tools for inter-agent communication via RabbitMQ, enabling agents to ask questions routed by topic.
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-mesh-mcpask backend agent about deployment status"
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-mesh-mcp
MCP server for inter-agent communication via RabbitMQ. Agents ask each other questions routed by topic.
Install
npm install -g agent-mesh-mcpRelated MCP server: gptqueue
Usage
Claude Code (~/.claude.json)
{
"mcpServers": {
"agent-mesh": {
"command": "agent-mesh-mcp",
"env": {
"RABBITMQ_URL": "amqp://user:pass@your-rabbitmq:5672/",
"AGENT_NAME": "human"
}
}
}
}Cursor (.cursor/mcp.json)
{
"mcpServers": {
"agent-mesh": {
"command": "agent-mesh-mcp",
"env": {
"RABBITMQ_URL": "amqp://user:pass@your-rabbitmq:5672/",
"AGENT_NAME": "cursor"
}
}
}
}npx (no install)
{
"mcpServers": {
"agent-mesh": {
"command": "npx",
"args": ["-y", "agent-mesh-mcp"],
"env": {
"RABBITMQ_URL": "amqp://user:pass@your-rabbitmq:5672/"
}
}
}
}Tool
ask_agent(topic, question)
Ask another agent a question. The question is published to a RabbitMQ topic exchange and routed to the agent listening on that topic.
Parameters:
topic— routing key (e.g.backend,frontend,ops,qa,devops)question— the question to ask
Returns: the agent's reply, or a timeout message.
How It Works
Caller ──► ask_agent(topic, question)
│
▼
RabbitMQ (topic exchange)
│
▼
Worker on ask.<topic> queue
│
▼
Agent processes question
│
▼
Reply ──► RabbitMQ ──► CallerEach agent is a worker process listening on its topic queue. When a question arrives, the worker runs an AI model (e.g. Claude) to answer it, then publishes the reply back.
Environment Variables
Variable | Default | Description |
|
| RabbitMQ connection URL |
|
| Name of the calling agent |
|
| Reply timeout in seconds |
|
| RabbitMQ exchange name |
License
MIT
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.
Latest Blog Posts
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/openbiocure/agent-mesh-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server