Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 28 additions & 0 deletions packages/web/src/content/docs/mcp-servers.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
Loading