agy-discord-mcp
Bridges a Discord bot with the agy CLI, enabling inbound messages to be relayed to agy and allowing agy to interact with Discord through MCP tools, including sending messages and files.
README
agy-discord-mcp
Discord bridge and MCP tools for the agy (Antigravity) CLI. It connects a Discord bot to agy in two ways:
botrelay — inbound Discord messages are sent toagy --printand agy's reply is posted back (text only).mcpmode — exposes Discord tools (reply, send_message with file attachments, react, fetch history, download attachments, …) to an interactive agy session over stdio, so agy can talk to Discord itself — including posting generated images.
It is a sibling of codex-discord-mcp, ported to agy. Because agy --print writes a clean response straight to stdout (no JSON to parse) and agy saves generated images as real files on disk, the bridge is a little simpler than the Codex original.
Requirements
- Node.js >= 20
- The
agy(Antigravity) CLI installed and authenticated (check withagy --version) - A Discord bot token (with the Message Content intent enabled)
Install
npm install -g agy-discord-mcp
agy-discord-mcp doctor
Or run it without a global install:
npx agy-discord-mcp@latest doctor
For local development from this repository:
npm ci
npm run build
npm link
Configure
Store your Discord bot token (written to ~/.agy/discord/.env, mode 600):
agy-discord-mcp configure <bot-token>
# or interactively:
agy-discord-mcp init
Invite the bot and check local status:
agy-discord-mcp invite-url <discord-client-id>
agy-discord-mcp doctor
Access control
Inbound access is allowlist/pairing based and managed only from the CLI — never from Discord messages:
agy-discord-mcp access show
agy-discord-mcp access policy <pairing|allowlist|disabled>
agy-discord-mcp access allow-user <discord-user-id>
agy-discord-mcp access allow-channel <channel-id> [--no-mention] [--allow-user <id>...]
agy-discord-mcp access pair <code> # approve a DM pairing code
Under the default pairing policy, the first DM from an unknown user returns a one-time code; run access pair <code> on the host to approve them.
bot relay mode
agy-discord-mcp bot
Each allowed message becomes agy --print "<prompt>" run in AGY_WORKDIR, and the trimmed stdout is posted back. Set AGY_RESUME_BY_CHANNEL=true to keep a per-channel agy conversation (resumed via --conversation <id>, detected from agy's conversations directory).
Files come back in relay mode too — not just images. The relay adds the output dir (default ~/agy_images, set by AGY_DISCORD_GENERATED_IMAGES_DIR) to agy's workspace and tells agy to save any user-facing file there; any deliverable agy writes during the turn — images plus common document/data/archive types (md, html, pdf, csv, json, zip, docx, …; code/temp files are ignored) — is detected and attached to the Discord reply automatically (≤25 MB each, up to 10). This needs no MCP server. If other agy workloads also write to ~/agy_images (e.g. image-gen crons), point the bot at a dedicated dir via AGY_DISCORD_GENERATED_IMAGES_DIR so their output isn't picked up.
agy is launched through its wrapper, which auto-injects
--dangerously-skip-permissions— every tool call is auto-approved. Treat Discord input as untrusted: run in an isolated workspace, setAGY_SANDBOX=1, or acknowledge the risk withAGY_DISCORD_ASSUME_YES=true.
mcp mode (agy drives Discord)
Caveat (current agy): registering an MCP server in agy's settings makes a headless
agy --printhang on a first-use, interactive "trust this MCP server?" prompt — there is no config key (themcpServersschema has notrustfield) oragy mcpsubcommand to pre-approve it. Since that global setting is read by every agy invocation, it also breaks the relay's ownagy --printcalls and any other headless agy users. Enable this only for a dedicated interactive agy session that can answer the prompt; for normal use prefer relay mode above, which already attaches images.
Register the MCP server by merging a mcpServers block into ~/.gemini/settings.json (or ~/.gemini/antigravity-cli/settings.json). Generate it with:
agy-discord-mcp print-config # node + absolute path form
agy-discord-mcp print-config --npx # npx form
Example (agy-mcp-config.example.json):
{
"mcpServers": {
"discord": {
"command": "node",
"args": ["/path/to/agy-discord-mcp/dist/cli.js", "mcp"],
"timeout": 60000,
"trust": true
}
}
}
Then run agy normally; it can call the Discord tools below. Inbound Discord messages are queued — poll with list_pending_messages, reply, then mark_message_handled.
Sending images / files
agy writes generated images as real files (its native generate_image tool, or the agy-image skill, save to a path you choose — default ~/agy_images). Pass that absolute path in the files array of reply/send_message. Files must live under an allowed attachment root (see AGY_DISCORD_ATTACHMENT_ROOTS); the agy image dir and the bridge inbox are always allowed.
Tools
| tool | purpose |
|---|---|
reply / send_message |
post text + optional file attachments |
react |
add an emoji reaction |
edit_message |
edit a message the bot sent |
fetch_messages |
recent channel history (Discord bot search is unavailable) |
download_attachment |
save a message's attachments to the inbox |
latest_generated_images |
newest images under the agy image dir |
list_pending_messages / mark_message_handled |
inbound message queue |
bridge_status |
state dir, queue counts, Discord login status |
Environment
| var | default | purpose |
|---|---|---|
DISCORD_BOT_TOKEN |
— | bot token (usually stored in the state .env) |
AGY_DISCORD_STATE_DIR |
~/.agy/discord |
state directory |
AGY_COMMAND |
agy |
agy executable |
AGY_WORKDIR |
cwd | working directory for relay runs |
AGY_MODEL |
— | --model |
AGY_SANDBOX |
false |
pass --sandbox (terminal restrictions) |
AGY_RESUME_BY_CHANNEL |
false |
resume a per-channel conversation |
AGY_TIMEOUT_MS |
900000 |
relay run budget (also sets agy's --print-timeout) |
AGY_EXTRA_ARGS |
— | extra agy args (shell-style string or JSON array) |
AGY_CONVERSATIONS_DIR |
~/.gemini/antigravity-cli/conversations |
where agy stores conversation .db files |
AGY_DISCORD_ATTACHMENT_ROOTS |
cwd + AGY_WORKDIR + inbox |
allowed upload roots (os-delimiter separated) |
AGY_DISCORD_GENERATED_IMAGES_DIR |
~/agy_images |
output dir the relay tells agy to save deliverables in and scans to auto-attach (always attachable) |
AGY_DISCORD_ASSUME_YES |
false |
suppress the unsafe-mode warning |
Development
npm run typecheck
npm test
npm run build
npm run dev:bot # tsx src/cli.ts bot
npm run dev:mcp # tsx src/cli.ts mcp
Publishing
GitHub Releases publish to npm through .github/workflows/release.yml.
- Make sure npm trusted publishing is configured for
Openclaw-Metis/agy-discord-mcpand therelease.ymlworkflow. - Bump
package.jsonandpackage-lock.jsonto the release version and commit the change. - Create a GitHub Release whose tag is
vplus the package version, for examplev0.1.0.
The release workflow checks that the tag matches package.json, runs typecheck, tests, and build, then publishes to npm with provenance. Normal releases use the npm latest dist-tag; GitHub pre-releases use next.
License
MIT
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。