Discord MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| DISCORD_GUILD_ID | Yes | The Server (Guild) ID of the Discord server you want to manage. | |
| 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 | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| discord_discoverB | Browse all available Discord operations organized by category. |
| discord_get_schemaA | Get detailed parameter schema for a specific operation. |
| discord_executeC | Execute a Discord operation with specified parameters. |
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 3 tools
The three tools have clearly distinct purposes: discover for browsing operations, execute for performing actions, and get_schema for retrieving parameter details. There is no overlap or ambiguity between them, as each serves a unique function in the workflow.
All tool names follow a consistent 'discord_verb' pattern (discord_discover, discord_execute, discord_get_schema), using snake_case and clear action verbs. This predictability makes the set easy to understand and navigate.
With only three tools, the server feels thin for a Discord integration, which typically involves many operations like sending messages, managing channels, handling members, etc. The tools act as meta-operations rather than direct actions, which might limit usability and require agents to understand a complex internal schema.
The tool surface is severely incomplete for a Discord server, as it lacks direct operations for core functionalities (e.g., send_message, create_channel, list_members). Instead, it relies on a generic execute tool with external schemas, creating gaps that could lead to agent confusion or failures in common workflows.