discord-bot-mcp
Provides tools for operating a Discord bot via the Discord REST API, enabling management of messages, channels, threads, roles, members, and other guild administration tasks.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@discord-bot-mcpsend a welcome message to #general"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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.
This is a wrapper aroundDiscord 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.
Related MCP server: Cloud Discord
Safety model
One instance is pinned to one
DISCORD_GUILD_ID.An optional channel allowlist narrows access further.
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.
These controls supplement Discord permissions; they do not replace them. Give the bot only the Discord role permissions it actually needs.
Start here: macOS + Codex
1. Install prerequisites
A Discord server where you can add a bot
An MCP-capable client such as Codex
Check the command-line tools:
node --version
pnpm --version2. 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" \
-wThe 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 verifypnpm 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
pwdAdd 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 |
| Yes | — | The only Discord server this instance may operate |
| macOS option | — | Keychain service containing the token |
| No | — | Narrows the Keychain lookup to one account |
| Non-Keychain option | — | Bot token supplied by the process environment |
| No |
| Enables messaging and other ordinary mutations |
| No |
| Enables admin/destructive and raw non-GET operations |
| No | all guild channels | Comma-separated channel IDs |
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 aboveThe 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
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityDmaintenanceLets any MCP-compatible AI client interact with Discord — send messages, manage channels, create webhooks, assign roles, and more.Last updated9MIT
- Alicense-qualityDmaintenanceAn MCP server that gives AI agents full admin control over Discord servers with 59 tools for messaging, moderation, roles, channels, forums, reactions, files, and more, deployed on Cloudflare Workers.Last updated4MIT
- Alicense-qualityDmaintenanceAn MCP server for Discord that enables AI assistants to interact with Discord servers, channels, and messages via the Discord API.Last updated19MIT
- Alicense-qualityDmaintenanceAn MCP server that enables AI agents to communicate with humans through Discord. Agents can send messages, create threads, wait for replies, and manage conversations across any MCP client.Last updated10ISC
Related MCP Connectors
An MCP server that integrates with Discord to provide AI-powered features.
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
An MCP server that gives your AI access to the source code and docs of all public github repos
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/diocata/discord-bot-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server