The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Discord MCP listing page.
A lightweight, multi-guild Discord MCP server with 95+ tools
Manage your entire Discord server from Claude Desktop, Claude Code, Cursor, VS Code Copilot, or any MCP-compatible client. Messages, channels, roles, permissions, moderation, forums, webhooks, all through natural language.
GUILD_ID lock-inAdd this to your MCP client config and replace YOUR_TOKEN_HERE with your bot token:
No install needed, npx handles everything.
Don't have a bot yet? See Creating Your Discord Bot.
Add the config above to your claude_desktop_config.json:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.jsonRestart Claude Desktop after saving.
Add the config above to ~/.cursor/mcp.json. See Cursor MCP docs for details.
Instead of passing the token in the MCP config, create a .env file at the project root:
The server loads .env automatically via dotenv.
| Variable | Default | Description |
|---|---|---|
DISCORD_TOKEN | none | Required. Bot token. |
DISCORD_MESSAGE_CONTENT | true | Set to false to stop requesting the Message Content privileged gateway intent at connect time. |
DISCORD_GUILD_MEMBERS | true | Set to false to stop requesting the Server Members privileged gateway intent at connect time. |
DISCORD_MCP_TOOLSETS | all | Comma-separated list of toolsets to expose, to keep the tool list small. Unset or all exposes every tool. |
DISCORD_ALLOWED_GUILDS | all | Comma-separated guild IDs the server may act on. When set, tool calls targeting any other guild are rejected, whether addressed by guild ID, channel ID, thread ID, webhook, or invite code. |
Since 2.1.1 the server no longer requests the GuildMessages intent at all: nothing here subscribes to message events, and every message this server returns is fetched over REST, which connection intents do not gate. That intent used to make discord.js cache every message flowing through every channel, together with its author, which grew unbounded on a long-running server. Cache sweepers now bound what remains. DISCORD_MESSAGE_CONTENT therefore only affects whether the Message Content intent is requested at connect time; it does not change what any tool returns.
These flags only control which gateway intents the server requests when identifying. Requesting a privileged intent that is not enabled in the Developer Portal makes the connection fail at the first tool call (close code 4014); set the flag to false to connect anyway.
Data access is governed by the portal toggles, not by these flags: this server reads everything over the REST API, which Discord gates on the portal setting alone. So with the portal toggles on, setting these flags to false loses nothing. With a portal toggle off, the corresponding data is restricted regardless of the flags: message bodies come back empty (content, embeds, attachments; except the bot's own messages, DMs, and messages that mention the bot) and member listing fails; enable the toggle in the portal to restore it.
Toolsets (DISCORD_MCP_TOOLSETS): discovery, messages, channels, permissions, members, roles, moderation, screening, stats, forums, webhooks, scheduled_events, invites, dm. Example; DISCORD_MCP_TOOLSETS=discovery,messages,members exposes only the discovery, message, and member tools. Note: a toolset ships its whole module, including its destructive tools (messages includes bulk delete; members includes kick/ban); use DISCORD_ALLOWED_GUILDS and the dry-run defaults to bound them. Only the listed toolsets' tools are advertised and callable. Unknown names make the server fail at startup instead of silently exposing everything (an empty value counts as unset and exposes all).
New Application > give it a name
Bot tab > Reset Token > copy the token
Enable Privileged Gateway Intents (this server requests both by default, but new Discord apps have the portal toggles OFF):
Important: if the bot requests a privileged intent that is not enabled here, Discord closes the connection with code
4014and every tool call fails. Enable both, or stop requesting the ones you don't need via the environment variables above.
OAuth2 > URL Generator:
botSend Messages, Read Message History, Manage Channels, Manage Roles, Kick Members, Ban Members, Moderate Members, View Audit Log, Manage Messages, Manage Threads, Add Reactions, Manage Guild, Manage Webhooks, Manage Events, Create Events, Create Instant Invite, Manage Nicknames, Pin Messages, Embed Links, Create Public Threads, Send Messages in ThreadsCopy the generated URL and invite the bot to your server
| Tool | Description |
|---|---|
discord_list_guilds | List all servers the bot is connected to |
discord_get_guild_info | Get detailed guild info (name, members, channels, roles, boosts) |
discord_list_channels | List all channels in a guild grouped by category |
discord_find_channel_by_name | Find a channel by name (partial match) |
| Tool | Description |
|---|---|
discord_read_messages | Read messages, paging back through history |
discord_send_message | Send a plain text message |
discord_reply_message | Reply to a specific message |
discord_edit_message | Edit a message sent by the bot |
discord_delete_message | Delete a specific message |
discord_add_reaction | Add a reaction emoji to a message |
discord_remove_reactions | Remove reactions (all, by emoji, or by user) |
discord_get_reactions | List users who reacted with a specific emoji |
discord_create_thread | Create a thread from a message or standalone |
discord_bulk_delete_messages | Delete multiple messages at once (2-100) |
discord_send_embed | Send a rich embed with all options |
discord_edit_embed | Edit an embed previously sent by the bot |
discord_send_multiple_embeds | Send up to 10 embeds in a single message |
discord_pin_message | Pin or unpin a message |
discord_get_message_attachments | List a message's attachments with download urls |
discord_fetch_pinned_messages | List all pinned messages in a channel |
discord_search_messages | Search messages by keyword (last 100) |
discord_search_guild_messages | Search across every channel using Discord's search index |
discord_crosspost_message | Publish a message to announcement channel followers |
discord_forward_message | Forward a message to another channel |
| Tool | Description |
|---|---|
discord_create_channel | Create a text, voice channel or category |
discord_delete_channel | Delete a channel |
discord_edit_channel | Edit name, topic, slowmode, NSFW flag |
discord_move_channel | Move a channel into/out of a category |
discord_clone_channel | Clone a channel with its permissions |
discord_set_channel_position | Set display position within a category |
discord_follow_announcement_channel | Follow an announcement channel |
discord_lock_channel_permissions | Sync permissions with parent category |
| Tool | Description |
|---|---|
discord_get_channel_permissions | List all permission overwrites on a channel |
discord_set_role_permission | Allow/deny permissions for a role on a channel |
discord_set_member_permission | Allow/deny permissions for a member on a channel |
discord_reset_channel_permissions | Remove all overwrites (reset to inherited) |
discord_copy_permissions | Copy overwrites from one channel to another |
discord_audit_permissions | Full permission audit for all channels |
| Tool | Description |
|---|---|
discord_list_members | List guild members with their roles |
discord_get_member_info | Detailed member info (roles, permissions, join date) |
discord_search_members | Search members by username or nickname |
discord_set_nickname | Set or clear a member's nickname |
discord_kick_member | Kick a member |
discord_ban_member | Ban a member (optionally delete recent messages) |
discord_unban_member | Unban a user |
discord_bulk_ban | Ban multiple users at once (raid mitigation) |
discord_list_bans | List all banned users |
discord_timeout_member | Timeout a member (0 to remove) |
discord_prune_members | Remove inactive members (with dry run) |
| Tool | Description |
|---|---|
discord_list_roles | List all roles with permissions and member count |
discord_create_role | Create a new role |
discord_edit_role | Edit a role (name, color, permissions, hoist, mentionable) |
discord_delete_role | Delete a role |
discord_add_role | Assign a role to a member |
discord_remove_role | Remove a role from a member |
discord_get_role_members | List all members with a specific role |
discord_set_role_position | Change a role's position in the hierarchy |
discord_set_role_icon | Set a custom icon or unicode emoji on a role |
| Tool | Description |
|---|---|
discord_get_forum_channels | List all forum channels in a guild |
discord_create_forum_channel | Create a new forum channel |
discord_create_forum_post | Create a post/thread in a forum |
discord_get_forum_post | Get a post's details and messages |
discord_list_forum_threads | List threads (active + archived) |
discord_reply_to_forum | Reply to a forum post |
discord_delete_forum_post | Delete a forum thread |
discord_get_forum_tags | Get available tags |
discord_set_forum_tags | Set/update tags on a forum |
discord_update_forum_post | Update title, archived, locked, tags |
| Tool | Description |
|---|---|
discord_create_webhook | Create a webhook on a channel |
discord_send_webhook_message | Send via webhook (custom username/avatar, embeds) |
discord_edit_webhook | Edit a webhook's name, avatar, or channel |
discord_delete_webhook | Delete a webhook |
discord_list_webhooks | List webhooks for a channel or guild |
discord_edit_webhook_message | Edit a message sent by a webhook |
discord_delete_webhook_message | Delete a message sent by a webhook |
discord_fetch_webhook_message | Fetch a specific webhook message |
| Tool | Description |
|---|---|
discord_list_scheduled_events | List all scheduled events in a guild |
discord_get_scheduled_event | Get detailed info about a scheduled event |
discord_create_scheduled_event | Create a voice, stage, or external event |
discord_edit_scheduled_event | Edit an existing scheduled event |
discord_delete_scheduled_event | Delete a scheduled event |
discord_get_event_subscribers | Get users who marked "Interested" |
discord_create_event_invite | Create an invite linked to an event |
| Tool | Description |
|---|---|
discord_send_dm | Send a direct message to a user by their user ID |
discord_send_dm_embed | Send an embed in a DM to a user |
discord_read_dms | Read message history from a DM conversation |
discord_reply_dm | Reply to a specific DM message |
discord_edit_dm | Edit a previously sent DM (text) |
discord_edit_dm_embed | Edit a previously sent DM embed |
discord_delete_dm | Delete a DM message |
| Tool | Description |
|---|---|
discord_list_invites | List all active invites in a guild |
discord_list_channel_invites | List invites for a specific channel |
discord_get_invite | Get details about an invite by its code |
discord_create_invite | Create an invite link for a channel |
discord_delete_invite | Revoke an invite |
| Tool | Description |
|---|---|
discord_get_audit_log | Fetch the guild audit log |
discord_get_membership_screening | Get the membership screening form |
discord_update_membership_screening | Update screening rules for new members |
| Tool | Description |
|---|---|
discord_get_server_stats | Server stats: members, channels, roles, boost level |
Enable Developer Mode in Discord:
Settings > Advanced > Developer Mode
Then right-click on a server, channel, or user > Copy ID.
src/tools/ (e.g. events.ts)defineTool({ name, description, annotations, schema, handle }) and export defineModule([...]) as the defaultallToolsets in src/tools/index.ts (the key is its DISCORD_MCP_TOOLSETS name).env file (not versioned)DISCORD_ALLOWED_GUILDSbulk_ban, prune_members, bulk_delete_messages, delete_channel) default to a dry_run preview; pass dry_run:false to applyContributions are welcome!
git checkout -b feature/my-feature)MIT, see LICENSE for details.