Overview
Agent-MCP is a local server-client agent designed to facilitate communication between multiple components in a system, enabling efficient data handling and processing.
To use Agent-MCP, set up the local server and connect client agents to it. Follow the instructions in the GitHub repository for configuration and deployment.
- Local server-client architecture for efficient communication - Easy setup and configuration - Supports multiple client connections
- Managing local network services
- Facilitating communication between IoT devices
- Developing distributed applications that require local data processing
Add to your AI client
Use these steps to connect Agent-MCP in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"agent-mcp-zeppelinpp": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-agent-mcp-zeppelinpp"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"agent-mcp-zeppelinpp": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-agent-mcp-zeppelinpp"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"agent-mcp-zeppelinpp": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-agent-mcp-zeppelinpp"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"agent-mcp-zeppelinpp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-agent-mcp-zeppelinpp"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"agent-mcp-zeppelinpp": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-agent-mcp-zeppelinpp"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"agent-mcp-zeppelinpp": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-agent-mcp-zeppelinpp"
]
}
}
}FAQ
What programming languages does Agent-MCP support?
Agent-MCP is designed to work with various programming languages that can communicate over a network.
Is Agent-MCP open source?
Yes! Agent-MCP is released under the MIT license and is open for contributions.
How can I contribute to Agent-MCP?
You can contribute by submitting issues, feature requests, or pull requests on the GitHub repository.