Discord MCP Extended
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| DISCORD_TOKEN | Yes | Your Discord bot token | |
| ELEVENLABS_API_KEY | No | Optional ElevenLabs API key for voice messages | |
| ELEVENLABS_VOICE_ID | No | Optional ElevenLabs voice ID for voice messages |
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 |
|---|---|
| discord_create_categoryC | Creates a new category in a Discord server. |
| discord_edit_categoryB | Edits an existing Discord category (name and position). |
| discord_delete_categoryB | Deletes a Discord category by ID. |
| discord_loginB | Logs in to Discord using the configured token |
| discord_sendA | Sends a message to a specified Discord text channel. Optionally reply to another message by providing its message ID. |
| discord_get_forum_channelsA | Lists all forum channels in a specified Discord server (guild) |
| discord_create_forum_postB | Creates a new post in a Discord forum channel with optional tags |
| discord_get_forum_postB | Retrieves details about a forum post including its messages |
| discord_reply_to_forumB | Adds a reply to an existing forum post or thread |
| discord_create_text_channelB | Creates a new text channel in a Discord server with an optional topic |
| discord_delete_channelB | Deletes a Discord channel with an optional reason |
| discord_read_messagesA | Retrieves messages from a Discord text channel with a configurable limit |
| discord_get_server_infoB | Retrieves detailed information about a Discord server including channels and member count |
| discord_add_reactionC | Adds an emoji reaction to a specific Discord message |
| discord_add_multiple_reactionsB | Adds multiple emoji reactions to a Discord message at once |
| discord_remove_reactionB | Removes a specific emoji reaction from a Discord message |
| discord_delete_forum_postC | Deletes a forum post or thread with an optional reason |
| discord_delete_messageB | Deletes a specific message from a Discord text channel |
| discord_create_webhookC | Creates a new webhook for a Discord channel |
| discord_send_webhook_messageB | Sends a message to a Discord channel using a webhook |
| discord_edit_webhookC | Edits an existing webhook for a Discord channel |
| discord_delete_webhookC | Deletes an existing webhook for a Discord channel |
| discord_list_serversA | Lists all Discord servers the bot is a member of |
| discord_search_messagesC | Searches for messages in a Discord server |
| discord_send_voiceA | Sends a voice message to a Discord channel using ElevenLabs TTS. Converts text to speech and attaches the audio file. |
| discord_fetch_imageA | Fetch an image from Discord CDN and return it as base64. Uses iterative scaling to fit within token limits. |
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 26 tools
All tools have clear resource-action pairs, such as category vs channel vs webhook vs message operations. Even overlapping actions like send are distinguished by medium: text channel, webhook, or voice. The only minor overlap is add_reaction vs add_multiple_reactions, but they serve distinct purposes.
Tools follow a consistent discord_verb_noun pattern with clear verbs like create, delete, and send. However, retrieval actions use mixed verbs: get (get_server_info), list (list_servers), and read (read_messages), which is a minor deviation. Overall, the naming is predictable and readable.
With 26 tools, this exceeds the recommended range and falls into the 'too many' category. While each tool covers a distinct Discord feature, the count feels heavy and some tools could be merged (e.g., add_multiple_reactions with add_reaction). The extended scope justifies some volume, but 26 is on the high side.
The tool surface covers core operations for categories, text channels, forums, webhooks, messages, and reactions. However, obvious gaps exist: no update operation for text channels or messages, and no channel-specific detail retrieval beyond server info. CRUD coverage is incomplete for certain resources, limiting full workflow automation.