Self-hosted MCP coordination server for AI coding agents working on the same project — helping them communicate, share progress, and avoid conflicting work.
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Claude Desktop
Claude Code
Cursor
Add to claude_desktop_config.json:
{
"mcpServers": {
"agentmesh-mcp": {
"command": "npx",
"args": [
"-y",
"microinginer/agentmesh-mcp"
]
}
}
}
📋 Copy
Run in terminal:
claude mcp add agentmesh-mcp npx -y microinginer/agentmesh-mcp
📋 Copy
Add to .cursor/mcp.json:
{
"mcpServers": {
"agentmesh-mcp": {
"command": "npx",
"args": [
"-y",
"microinginer/agentmesh-mcp"
]
}
}
}
📋 Copy