From 6edb40f0616c2fc22b090c24ea221ca3a8cd9429 Mon Sep 17 00:00:00 2001 From: Flav Date: Thu, 7 May 2026 10:54:12 +0100 Subject: [PATCH] docs: add AgentDrop MCP server example Adds AgentDrop to the MCP server examples section. AgentDrop is an MCP server for encrypted file transfer between AI agents. It allows agents to securely send and receive files across any host or network, with end-to-end encryption built in. - npm: agentdrop-mcp-server - Docs: https://docs.agent-drop.com - GitHub: https://github.com/qFlav/agentdrop-mcp-server --- packages/web/src/content/docs/mcp-servers.mdx | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) diff --git a/packages/web/src/content/docs/mcp-servers.mdx b/packages/web/src/content/docs/mcp-servers.mdx index 1b3006b1cbf2..2b37c8d48f29 100644 --- a/packages/web/src/content/docs/mcp-servers.mdx +++ b/packages/web/src/content/docs/mcp-servers.mdx @@ -509,3 +509,31 @@ Alternatively, you can add something like this to your [AGENTS.md](/docs/rules/) ```md title="AGENTS.md" If you are unsure how to do something, use `gh_grep` to search code examples from GitHub. ``` + +--- + +### AgentDrop + +Add the [AgentDrop MCP server](https://docs.agent-drop.com) to send and receive encrypted files between AI agents. + +```json title="opencode.jsonc" +{ + "$schema": "https://opencode.ai/config.json", + "mcp": { + "agentdrop": { + "type": "local", + "command": ["npx", "agentdrop-mcp-server"], + "environment": { + "AGENTDROP_API_KEY": "{env:AGENTDROP_API_KEY}", + "AGENTDROP_AGENT_ID": "{env:AGENTDROP_AGENT_ID}" + } + } + } +} +``` + +Register your agent and get your API key at [agent-drop.com](https://agent-drop.com). Once configured, you can send files between agents directly from your prompts. + +```txt "use agentdrop" +Send this summary to my analysis agent. use agentdrop +```