Discord MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| DISCORD_BOT_TOKEN | Yes | Your Discord Bot Token from the Discord Developer Portal. |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_meA | Gets information about the current authenticated Discord bot user. |
| list_guildsA | Lists all Discord guilds (servers) the bot is currently a member of. |
| get_guildA | Gets details of a specific Discord guild (server) by its ID, including roles, emojis, and member count. |
| list_channelsA | Lists all channels in a specific Discord guild/server. |
| get_channelA | Gets details of a specific Discord channel or thread by its ID. |
| list_messagesB | Fetches recent messages from a Discord channel or thread. |
| get_messageA | Retrieves a specific message by channel ID and message ID. |
| send_messageA | Sends a message to a specified Discord text channel or thread. |
| edit_messageB | Edits a previously sent message by the bot in a Discord channel. |
| delete_messageB | Deletes a message in a Discord channel. |
| add_reactionA | Adds a reaction emoji to a message in a Discord channel. |
| delete_reactionB | Deletes the bot's reaction on a message in a Discord channel. |
| list_membersB | Lists members of a Discord guild/server. |
| get_pinned_messagesA | Gets all pinned messages in a Discord channel. |
| pin_messageA | Pins a message in a Discord channel. |
| unpin_messageB | Unpins a message in a Discord channel. |
| create_threadA | Creates a new public thread in a Discord channel or from a message. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 17 tools
Each tool targets a distinct resource-action pair: guild, channel, message, reaction, pin, or thread. Even similar tools like list_messages and get_message are clearly differentiated by scope, so an agent should not confuse them.
All tools follow a consistent snake_case verb_noun pattern, such as get_, list_, send_, edit_, delete_, add_, pin_, and create_. The naming is uniform and predictable across the entire set.
At 17 tools, the server is slightly above the ideal 3-15 tool range but each tool maps to a concrete Discord API operation and earns its place. The count is heavy but still navigable and well-scoped for a Discord bot.
The set covers core Discord workflows well: guild/channel reads, full message CRUD, reactions, pins, and thread creation. Obvious gaps like channel creation/deletion, member management, and thread editing/deleting are notable but not critical for the primary message-interaction use case.