Discord MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| DISCORD_BOT_TOKEN | Yes | Bot token from Discord Developer Portal | |
| DISCORD_DEFAULT_GUILD_ID | No | Default server ID for all tool calls |
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 |
|---|---|
| discord_list_channelsA | List all text channels in a Discord server. Args: guild_id: The Discord server/guild ID |
| discord_send_messageA | Send a plain text message to a Discord channel. Args: channel: Channel ID or channel name (e.g. "general" or "123456789") content: The message text to send guild_id: Server/guild ID. Required when channel is a name. Falls back to DISCORD_DEFAULT_GUILD_ID. |
| discord_read_messagesA | Read recent messages from a Discord channel. Args: channel: Channel ID or channel name guild_id: Server/guild ID. Required when channel is a name. Falls back to DISCORD_DEFAULT_GUILD_ID. limit: Number of messages to retrieve (default 10, max 50) |
| discord_send_embedA | Send a rich embed message to a Discord channel. Args: channel: Channel ID or channel name title: Embed title description: Embed body text color: Embed color as decimal (e.g. 3447003 for blue) fields: List of field objects with name, value, and optional inline boolean content: Plain text to send alongside the embed guild_id: Server/guild ID. Required when channel is a name. Falls back to DISCORD_DEFAULT_GUILD_ID. |
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 4 tools
Each tool has a clearly distinct purpose: listing channels, reading messages, sending plain messages, and sending rich embeds. There is no functional overlap between these operations, making tool selection straightforward for an agent.
All tools follow a consistent 'discord_verb_noun' naming pattern with snake_case throughout. This predictable structure makes the tool set easy to navigate and understand at a glance.
With 4 tools, the server covers core Discord operations well for its apparent scope of channel/message management. It's slightly lean but reasonable; additional tools like editing/deleting messages or managing reactions could enhance completeness without being essential.
The tool set covers basic read and send operations but has notable gaps for a full Discord interaction surface. Missing are tools for updating/deleting messages, managing reactions, or handling other Discord features like voice channels or user management, which could limit agent workflows.