AgentAnycast MCP Server

AgentAnycast MCP Server

Enables AI tools to discover, communicate with, and orchestrate AI agents over a decentralized peer-to-peer network with end-to-end encryption.

Category
Visit Server

README

AgentAnycast MCP Server

Turn any AI tool into a peer-to-peer agent hub. Discover, communicate with, and orchestrate AI agents across any network -- encrypted, decentralized, zero config.

PyPI License

uvx agentanycast-mcp

Works with Claude Desktop, Claude Code, Cursor, VS Code, Windsurf, JetBrains, Gemini CLI, Amazon Q, Cline, Continue, Zed, Roo Code, and ChatGPT.

Setup

Pick your platform and add the config below. That's the entire setup -- the daemon downloads and starts automatically on first run.

<details open> <summary><strong>Claude Desktop</strong></summary>

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "agentanycast": {
      "command": "uvx",
      "args": ["agentanycast-mcp"]
    }
  }
}

</details>

<details> <summary><strong>Claude Code</strong></summary>

claude mcp add agentanycast -- uvx agentanycast-mcp

</details>

<details> <summary><strong>Cursor</strong></summary>

Add to .cursor/mcp.json in your project root:

{
  "mcpServers": {
    "agentanycast": {
      "command": "uvx",
      "args": ["agentanycast-mcp"]
    }
  }
}

</details>

<details> <summary><strong>VS Code + Copilot</strong></summary>

Add to .vscode/mcp.json:

{
  "servers": {
    "agentanycast": {
      "command": "uvx",
      "args": ["agentanycast-mcp"]
    }
  }
}

</details>

<details> <summary><strong>Windsurf</strong></summary>

Add to ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "agentanycast": {
      "command": "uvx",
      "args": ["agentanycast-mcp"]
    }
  }
}

</details>

<details> <summary><strong>JetBrains AI</strong></summary>

Settings -> Tools -> AI -> MCP Servers -> Add:

{
  "servers": {
    "agentanycast": {
      "command": "uvx",
      "args": ["agentanycast-mcp"]
    }
  }
}

</details>

<details> <summary><strong>Gemini CLI</strong></summary>

Add to ~/.gemini/settings.json:

{
  "mcpServers": {
    "agentanycast": {
      "command": "uvx",
      "args": ["agentanycast-mcp"]
    }
  }
}

</details>

<details> <summary><strong>Amazon Q Developer</strong></summary>

Add to ~/.aws/amazonq/mcp.json:

{
  "mcpServers": {
    "agentanycast": {
      "command": "uvx",
      "args": ["agentanycast-mcp"]
    }
  }
}

</details>

<details> <summary><strong>Cline</strong></summary>

Add to Cline MCP settings (VS Code: Ctrl+Shift+P -> "Cline: MCP Servers"):

{
  "mcpServers": {
    "agentanycast": {
      "command": "uvx",
      "args": ["agentanycast-mcp"]
    }
  }
}

</details>

<details> <summary><strong>Continue</strong></summary>

Add to ~/.continue/config.json:

{
  "experimental": {
    "modelContextProtocolServers": [
      {
        "transport": {
          "type": "stdio",
          "command": "uvx",
          "args": ["agentanycast-mcp"]
        }
      }
    ]
  }
}

</details>

<details> <summary><strong>Zed</strong></summary>

Add to Zed settings (~/.config/zed/settings.json):

{
  "context_servers": {
    "agentanycast": {
      "command": {
        "path": "uvx",
        "args": ["agentanycast-mcp"]
      }
    }
  }
}

</details>

<details> <summary><strong>Roo Code</strong></summary>

Add to Roo Code MCP settings (VS Code: Ctrl+Shift+P -> "Roo Code: MCP Servers"):

{
  "mcpServers": {
    "agentanycast": {
      "command": "uvx",
      "args": ["agentanycast-mcp"]
    }
  }
}

</details>

<details> <summary><strong>ChatGPT (HTTP mode)</strong></summary>

Deploy the server with HTTP transport:

agentanycast-mcp --transport http --port 8080
# or: docker run -p 8080:8080 agentanycast/mcp-server

Then add http://your-server:8080/mcp in ChatGPT developer settings. </details>

What You Can Do

Once connected, ask your AI assistant:

  • "Find agents that can translate Japanese" -- discovers agents on the P2P network
  • "Send 'summarize this article' to the translate agent" -- encrypted task delivery
  • "What agents are connected right now?" -- lists connected peers
  • "What's my Peer ID?" -- shows your node's identity and DID

Available Tools

Tool Description Example prompt
discover_agents Find agents by skill "Find agents that can translate"
send_task Send an encrypted task to an agent "Send 'hello' to peer 12D3KooW..."
get_task_status Check the result of a sent task "What was the result of that task?"
get_agent_card Get an agent's capabilities "What can that agent do?"
list_connected_peers List all connected P2P peers "Who's online?"
get_node_info Get this node's Peer ID, DID, status "What's my agent info?"

Configuration

Environment Variables

Set these in the "env" section of your MCP config:

Variable Description Default
AGENTANYCAST_RELAY Relay server multiaddr for cross-network P2P None (LAN only)
AGENTANYCAST_HOME Data directory for daemon state ~/.agentanycast

Example with relay for cross-network communication:

{
  "mcpServers": {
    "agentanycast": {
      "command": "uvx",
      "args": ["agentanycast-mcp"],
      "env": {
        "AGENTANYCAST_RELAY": "/ip4/relay.agentanycast.io/tcp/4001/p2p/12D3KooW..."
      }
    }
  }
}

CLI Arguments

agentanycast-mcp [--transport stdio|http] [--port 8080] [--relay MULTIADDR] [--home DIR]

CLI arguments take priority over environment variables.

How It Works

Your AI Tool (Claude, Cursor, VS Code, ...)
    |
    | MCP protocol (stdio or HTTP)
    v
AgentAnycast MCP Server
    |
    | gRPC (Unix domain socket)
    v
AgentAnycast Daemon (Go)
    |
    | libp2p (TCP/QUIC + Noise_XX encryption + NAT traversal)
    v
Remote AI Agents (anywhere in the world)
  • Zero config -- uvx agentanycast-mcp handles everything. The daemon is auto-downloaded and managed.
  • Zero API keys -- agents are identified by cryptographic Peer IDs (Ed25519), not accounts or tokens.
  • End-to-end encrypted -- Noise_XX protocol. Even relay servers see only ciphertext.
  • NAT traversal -- works behind firewalls with automatic hole-punching and relay fallback.

What Makes This Different

This is the only MCP server that connects to a decentralized peer-to-peer network of AI agents. Other MCP servers connect to specific SaaS APIs. AgentAnycast connects you to any AI agent, anywhere, with no intermediary that can read your messages.

Troubleshooting

Daemon fails to start

  • Check that port 4001 (TCP) is not in use: lsof -i :4001
  • Try a clean state: rm -rf ~/.agentanycast && uvx agentanycast-mcp

No agents found on discover

  • Agents must be on the same LAN (mDNS) or connected to the same relay
  • Set AGENTANYCAST_RELAY to connect across networks

Connection timeout

  • Behind a strict firewall? Set a relay address. The relay provides fallback connectivity.
  • Check daemon logs: cat ~/.agentanycast/daemon.log

"uvx" not found

  • Install uv: curl -LsSf https://astral.sh/uv/install.sh | sh
  • Or install directly: pip install agentanycast-mcp

Tool calls failing

  • Restart your AI tool after adding the MCP config
  • Verify config JSON syntax (no trailing commas)

Links

License

Apache License, Version 2.0

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured