AgentAnycast Server
БесплатноНе проверенEnables AI tools to discover, communicate with, and orchestrate AI agents over a decentralized peer-to-peer network with end-to-end encryption.
Описание
Enables AI tools to discover, communicate with, and orchestrate AI agents over a decentralized peer-to-peer network with end-to-end encryption.
README
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.
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.
Claude Desktop
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"]
}
}
}
Claude Code
claude mcp add agentanycast -- uvx agentanycast-mcp
Cursor
Add to .cursor/mcp.json in your project root:
{
"mcpServers": {
"agentanycast": {
"command": "uvx",
"args": ["agentanycast-mcp"]
}
}
}
VS Code + Copilot
Add to .vscode/mcp.json:
{
"servers": {
"agentanycast": {
"command": "uvx",
"args": ["agentanycast-mcp"]
}
}
}
Windsurf
Add to ~/.codeium/windsurf/mcp_config.json:
{
"mcpServers": {
"agentanycast": {
"command": "uvx",
"args": ["agentanycast-mcp"]
}
}
}
JetBrains AI
Settings -> Tools -> AI -> MCP Servers -> Add:
{
"servers": {
"agentanycast": {
"command": "uvx",
"args": ["agentanycast-mcp"]
}
}
}
Gemini CLI
Add to ~/.gemini/settings.json:
{
"mcpServers": {
"agentanycast": {
"command": "uvx",
"args": ["agentanycast-mcp"]
}
}
}
Amazon Q Developer
Add to ~/.aws/amazonq/mcp.json:
{
"mcpServers": {
"agentanycast": {
"command": "uvx",
"args": ["agentanycast-mcp"]
}
}
}
Cline
Add to Cline MCP settings (VS Code: Ctrl+Shift+P -> "Cline: MCP Servers"):
{
"mcpServers": {
"agentanycast": {
"command": "uvx",
"args": ["agentanycast-mcp"]
}
}
}
Continue
Add to ~/.continue/config.json:
{
"experimental": {
"modelContextProtocolServers": [
{
"transport": {
"type": "stdio",
"command": "uvx",
"args": ["agentanycast-mcp"]
}
}
]
}
}
Zed
Add to Zed settings (~/.config/zed/settings.json):
{
"context_servers": {
"agentanycast": {
"command": {
"path": "uvx",
"args": ["agentanycast-mcp"]
}
}
}
}
Roo Code
Add to Roo Code MCP settings (VS Code: Ctrl+Shift+P -> "Roo Code: MCP Servers"):
{
"mcpServers": {
"agentanycast": {
"command": "uvx",
"args": ["agentanycast-mcp"]
}
}
}
ChatGPT (HTTP mode)
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.
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-mcphandles 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_RELAYto 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
- AgentAnycast -- Main project, documentation, examples
- Python SDK -- Build P2P agents in Python
- TypeScript SDK -- Build P2P agents in TypeScript
License
Установка AgentAnycast Server
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/AgentAnycast/agentanycast-mcpFAQ
AgentAnycast Server MCP бесплатный?
Да, AgentAnycast Server MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для AgentAnycast Server?
Нет, AgentAnycast Server работает без API-ключей и переменных окружения.
AgentAnycast Server — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить AgentAnycast Server в Claude Desktop, Claude Code или Cursor?
Открой AgentAnycast Server на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
автор: modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
автор: xuzexin-hzCompare AgentAnycast Server with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории ai
