discord-bot-mcp
A local MCP server that lets AI clients control a Discord bot via Discord's REST API, offering messaging, administration, and moderation tools. Includes safety features such as guild scoping, allowlists, and opt-in write permissions.
README
Discord Bot MCP
A local Model Context Protocol (MCP) server that lets an MCP client operate your Discord bot through Discord's REST API. It provides focused messaging tools, grouped administration tools, guild scoping, opt-in writes, and secret redaction.
[!IMPORTANT] This is a wrapper around Discord bot capabilities. It does not sign in as you, impersonate your personal Discord account, or send messages from your user identity. Every action is performed by the bot account you create, with that bot's name, avatar, roles, and Discord permissions.
What it can do
The server exposes 20 MCP tools:
| Area | Tools and capabilities |
|---|---|
| Everyday use | Get the server, list channels, read/send messages, create threads, add reactions |
| Server structure | Server settings, channels, categories, permission overwrites, roles |
| Community administration | Members, bans, timeouts, scheduled events, AutoMod, emojis, stickers |
| Content administration | Edit/delete/pin messages, threads and membership, invites, webhooks |
| Oversight | Audit-log queries and a guarded raw Discord REST request tool |
See TOOLS.md for every tool, operation, and safety gate.
Safety model
- One instance is pinned to one
DISCORD_GUILD_ID. - An optional channel allowlist narrows ordinary channel-scoped operations.
- Writes are off unless
DISCORD_ALLOW_WRITES=true. - Destructive/admin mutations additionally require
DISCORD_ALLOW_DESTRUCTIVE_ADMIN=true. - Cross-guild raw API paths, full URLs, and traversal are rejected.
- Token-, secret-, and password-like response fields are redacted.
- Outgoing messages disable automatic
@everyone, role, and user mention parsing. - Credentials stay in each operator's environment or macOS Keychain.
Guild-wide administration tools are intentionally guild-wide; for example, listing roles or members is not filtered by a channel allowlist. These controls supplement Discord permissions rather than replacing them. Give the bot only the Discord role permissions it actually needs.
Start here: macOS + Codex
1. Install prerequisites
- Node.js 20 or newer
- pnpm
- A Discord server where you can add a bot
- An MCP-capable client such as Codex
Check the command-line tools:
node --version
pnpm --version
2. Create your Discord application and bot
- Open the Discord Developer Portal → Applications.
- Select New Application, give it a recognizable name, and create it.
- Open Bot in the left sidebar. Discord creates the bot user for the app.
- Set the bot's username and avatar. This is the identity people will see.
- Under Privileged Gateway Intents, enable only intents your use case requires. This MCP currently uses the REST API, so most installations do not need privileged gateway intents.
Useful official references:
3. Install the bot in your server
- In the Developer Portal, open OAuth2 → URL Generator.
- Select the
botscope. - Select the smallest required bot permissions.
- Open the generated URL, choose your server, and authorize the bot.
For ordinary use, start with View Channels, Read Message History, Send Messages, Create Public Threads, and Add Reactions. Add Manage Channels, Manage Roles, Manage Messages, or other permissions only when you intend to use those admin operations. Administrator is convenient for a private test server but is not the recommended default.
Review Discord's permissions reference before granting administration rights.
4. Copy the server ID
In Discord, open User Settings → Advanced and enable Developer Mode.
Then right-click the server icon and select Copy Server ID. Discord calls a
server a guild in its API, so this value becomes DISCORD_GUILD_ID.
Discord's official guide to copying IDs
5. Store the bot token safely
On the application's Bot page, select Reset Token and copy the new token once. Never paste it into a chat, README, issue, Codex configuration, or Git repository.
On macOS, store it in Keychain without echoing it to the terminal:
security add-generic-password \
-U \
-s discord-bot-mcp-my-bot \
-a "$USER" \
-w
The command prompts for the token. Each teammate uses a different Keychain entry and preferably their own Discord bot; sharing this repository never shares a bot identity or token.
If a token is exposed, immediately reset it in the Developer Portal. Deleting the text later does not make the old token safe.
6. Clone and build
git clone https://github.com/diocata/discord-bot-mcp.git
cd discord-bot-mcp
pnpm install --frozen-lockfile
pnpm verify
pnpm verify type-checks the code, runs unit and MCP integration tests, and
builds dist/index.js.
7. Register it with Codex
Find the absolute paths you will use:
which node
pwd
Add the following to ~/.codex/config.toml, replacing the example paths, guild
ID, Keychain service, and macOS account:
[mcp_servers.discord]
command = "/absolute/path/from/which/node"
args = ["/absolute/path/to/discord-bot-mcp/dist/index.js"]
[mcp_servers.discord.env]
DISCORD_GUILD_ID = "your_server_id"
DISCORD_KEYCHAIN_SERVICE = "discord-bot-mcp-my-bot"
DISCORD_KEYCHAIN_ACCOUNT = "your-macos-account-name"
DISCORD_ALLOW_WRITES = "false"
DISCORD_ALLOW_DESTRUCTIVE_ADMIN = "false"
DISCORD_ALLOWED_CHANNEL_IDS = ""
Restart Codex or open a new task so the MCP tools are discovered. Start in read-only mode and ask it to list the Discord server and channels. After that works, opt into ordinary writes:
DISCORD_ALLOW_WRITES = "true"
Only enable destructive administration when you intentionally need it:
DISCORD_ALLOW_DESTRUCTIVE_ADMIN = "true"
8. Try it
Example requests to your MCP client:
List the Discord channels you can access.
Read the latest 10 messages in #general.
Send “Hello from my bot” in #bot-testing.
Create a thread called “MVP feedback” in #product.
Use a dedicated test channel first. Confirm in Discord that messages show the
bot's name and BOT badge—not your personal user identity.
Other operating systems and clients
On Linux, Windows, containers, or CI, inject DISCORD_BOT_TOKEN into the MCP
process through the platform's secret manager. Do not put a real token in a
tracked .env file. All other variables are identical.
The server uses standard MCP over stdio and is not tied to Codex. Configure the same executable and environment variables in any MCP client that supports a local stdio server.
Configuration reference
| Variable | Required | Default | Meaning |
|---|---|---|---|
DISCORD_GUILD_ID |
Yes | — | The only Discord server this instance may operate |
DISCORD_KEYCHAIN_SERVICE |
macOS option | — | Keychain service containing the token |
DISCORD_KEYCHAIN_ACCOUNT |
No | — | Narrows the Keychain lookup to one account |
DISCORD_BOT_TOKEN |
Non-Keychain option | — | Bot token supplied by the process environment |
DISCORD_ALLOW_WRITES |
No | false |
Enables messaging and other ordinary mutations |
DISCORD_ALLOW_DESTRUCTIVE_ADMIN |
No | false |
Enables admin/destructive and raw non-GET operations |
DISCORD_ALLOWED_CHANNEL_IDS |
No | all guild channels | Comma-separated IDs for ordinary channel-scoped tools |
If DISCORD_KEYCHAIN_SERVICE is set, the Keychain token takes precedence over
DISCORD_BOT_TOKEN.
Development and tests
pnpm check # TypeScript without emitting files
pnpm test:unit # HTTP behavior and security boundaries
pnpm test:integration # Real MCP client/server protocol interaction
pnpm test:live # Optional read-only test against your configured bot
pnpm build # Production JavaScript and declarations
pnpm verify # All gates above
The integration suite uses in-memory MCP transports and a mock Discord API. It does not require a real token and never sends a live Discord message. CI runs the complete verification matrix on Node.js 20, 22, and 24.
pnpm test:live is an optional, read-only smoke test. It requires the same
Discord environment variables as the MCP server and verifies the configured
bot can retrieve exactly one guild and its allowed channels. It forcibly
disables writes regardless of the supplied write flags.
Troubleshooting
DISCORD_GUILD_ID is required— add the server ID to the MCP environment.- No token was found in macOS Keychain — make the service and account match
the
security add-generic-passwordcommand exactly. Missing Access/Missing Permissions— give the bot's Discord role the specific permission needed and ensure its role is high enough in the role list.- Writes are disabled — set
DISCORD_ALLOW_WRITES=trueand restart the MCP client. - Destructive administration is disabled — enable its separate flag only for the operation, then turn it off again.
- Tools do not appear — run
pnpm build, verify both absolute paths, and restart the MCP client.
License
推荐服务器
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 模型以安全和受控的方式获取实时的网络信息。