discord-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| DISCORD_BOT_TOKEN | Yes | Discord bot token from the Discord Developer Portal. Requires Message Content Intent enabled. |
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 |
|---|---|
| list_tagsC | List available tags of a forum channel. |
| list_postsC | List posts in a forum channel, active first. |
| read_postB | Read a forum post: metadata plus messages, oldest first. |
| read_channelB | Read recent messages from a text channel, oldest first. |
| create_postB | Create a forum post. |
| reply_postC | Send a message in a forum post or thread. |
| set_tagsC | Replace tags on a forum post. |
| add_tagsB | Add tags to a forum post. |
| remove_tagsB | Remove tags from a forum post. |
| close_postA | Archive a forum post. |
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 10 tools
Most tools target clearly distinct actions (listing, reading, creating, replying, closing). The tag-related tools (set_tags, add_tags, remove_tags) have overlapping purposes, though their descriptions clarify the differences.
All tool names follow a consistent verb_noun pattern using lowercase with underscores. Verbs like list, read, create, reply, set, add, remove, and close are uniformly paired with clear nouns.
Ten tools is well-scoped for a Discord forum-focused server. Each tool addresses a necessary operation without excessive redundancy or missing core actions.
The tool set covers the main forum lifecycle: listing, reading, creating, replying, tag management, and closing. Minor gaps exist, such as editing/deleting posts or messages, but agents can work around these.