Skip to main content
Glama
diocata

discord-bot-mcp

by diocata

Discord Bot MCP

CI License: MIT Node.js 20+

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 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.

How the local MCP connects an AI client to a Discord bot

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

Check the command-line tools:

node --version
pnpm --version

2. Create your Discord application and bot

  1. Open the Discord Developer Portal → Applications.

  2. Select New Application, give it a recognizable name, and create it.

  3. Open Bot in the left sidebar. Discord creates the bot user for the app.

  4. Set the bot's username and avatar. This is the identity people will see.

  5. 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.

Discord application and bot setup checklist

Useful official references:

3. Install the bot in your server

  1. In the Developer Portal, open OAuth2 → URL Generator.

  2. Select the bot scope.

  3. Select the smallest required bot permissions.

  4. 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 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 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-password command 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=true and 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

MIT

A
license - permissive license
-
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

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

View all related MCP servers

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

View all MCP Connectors

Latest Blog Posts

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