discord-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| DISCORD_BOT_TOKEN | Yes | The Discord bot token for authentication |
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 | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| verifyA | Verify the bot token by calling GET /users/@me. Returns the bot user object (id, username, discriminator flags, etc.). |
| list_guildsA | List guilds the bot is in (GET /users/@me/guilds). Args: limit: Max guilds per request (1–200). before: Optional guild id cursor for pagination. |
| get_guildB | Get a guild by id. The bot must be a member of that guild. |
| list_guild_channelsB | List channels in a guild (text, voice, categories, etc.). |
| get_channelB | Get a single channel object by id. |
| list_channel_messagesA | List recent messages in a channel (newest first in the response). Requires Read Message History and access to the channel. |
| create_channel_messageA | Send a text message to a channel. Requires Send Messages. Respect server rules and rate limits; content is limited to 2000 characters for plain text. |
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 7 tools
Each tool targets a distinct resource or action: guild, channel, message, and authentication. No two tools have overlapping purposes, making it easy for an agent to select the correct one.
Tool names consistently follow a verb_noun pattern in snake_case (e.g., create_channel_message, get_guild, list_guilds), with 'verify' being the only outlier but acceptable as a standalone action.
Seven tools is well-scoped for a Discord MCP server that covers basic guild, channel, and message operations plus authentication. The count feels neither too sparse nor overloaded.
The set covers reading guilds, channels, messages, and sending a message, but lacks important operations like editing/deleting messages, creating/deleting channels, or managing reactions. Notable gaps exist for common workflows.