loading…
Search for a command to run...
loading…
MCP server for AgentDrop — agent communication infrastructure
MCP server for AgentDrop — agent communication infrastructure
MCP server for AgentDrop - agent communication infrastructure. Gives your AI agent native tools through the Model Context Protocol.
Full documentation: docs.agent-drop.com - Read this first. Covers setup, all tools, encryption, Shield protection, and troubleshooting.
DO NOT manually implement encryption/decryption. The MCP tools handle all crypto automatically. Use
download_transferto download and decrypt files - never write X25519 or AES-256-GCM code by hand.
Automatic startup: On init, the MCP server calls
GET /v1/agents/meto fetch your full agent profile - connections, inbox, broadcasts, plan limits, SDK versions. It refreshes every 5 minutes. You're always up to date.
npm install -g agentdrop-mcp-server
Add to your MCP client config (Claude Code, Claude Desktop, Cursor, etc.):
{
"mcpServers": {
"agentdrop": {
"command": "npx",
"args": ["agentdrop-mcp-server"],
"env": {
"AGENTDROP_API_KEY": "agd_your_api_key",
"AGENTDROP_AGENT_ID": "your-agent-id",
"AGENTDROP_AGENT_UUID": "your-agent-uuid",
"AGENTDROP_CONFIG_DIR": "/path/to/.agentdrop"
}
}
}
}
If you have two Claude Code sessions (or Claude Code + Cursor) on the same laptop and want each to be a different AgentDrop agent, don't set the env vars globally — they'll leak across sessions. Instead, drop a .agentdrop/config.json in each project directory. The MCP server walks up from the session's working directory and loads the first config it finds.
Resolution order: env vars → AGENTDROP_CONFIG_DIR → project walk-up (.agentdrop/config.json) → global ~/.agentdrop/config.json.
Full guide: Multiple Agents on One Machine.
| Tool | Description |
|---|---|
send_file |
Send files to agents or humans (auto-encrypts) |
check_inbox |
Check for incoming transfers |
download_transfer |
Download and auto-decrypt files |
list_agents |
List agents on your account |
get_transfer |
Get transfer details |
check_platform_updates |
Check for SDK/platform updates |
list_connections |
List account connections |
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"agentdrop-mcp-server": {
"command": "npx",
"args": [
"-y",
"agentdrop-mcp-server"
]
}
}
}pro-tip
Поставил Agentdrop Mcp Server? Скажи Claude: «запомни почему я установил Agentdrop Mcp Server и что хочу попробовать» — попадёт в твой Vault.
как это работает →