Skip to main content
Glama
JoelBChapmanII

Discord MCP

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
DISCORD_BOT_TOKENYesThe Discord bot token used to authenticate with the Discord REST API.
DISCORD_ALLOWED_GUILDSYesThe numeric guild ID that the server is restricted to. This is required; the server will fail to start without it.
DISCORD_ALLOWED_CHANNELSNoOptional comma-separated list of channel IDs that are allowed. When set, all reads outside these channels are rejected.

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

CapabilityDetails
tools
{
  "listChanged": true
}

Tools

Functions exposed to the LLM to take actions

NameDescription
discord_list_guildsA

Lists only the Discord guilds explicitly allowed by local configuration.

discord_list_channelsA

Lists channels in one allowlisted Discord guild. Optional channel allowlisting is applied.

discord_get_channelA

Gets metadata for one allowlisted guild channel. This does not fetch messages.

discord_list_messagesA

Reads a bounded page of messages from one allowlisted guild channel. The Discord application must have Message Content Intent enabled.

discord_get_messageA

Gets one message from an allowlisted guild channel. The Discord application must have Message Content Intent enabled.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4.1/5.0

Scored across 5 tools

Disambiguation5/5

Each tool targets a distinct resource and action: listing guilds, listing channels, getting channel metadata, listing messages, and getting a single message. There is no overlap or ambiguity between them.

Naming Consistency5/5

All tool names follow the consistent pattern of 'discord_' + verb + '_' + noun, using lowercase snake_case throughout (list_guilds, get_channel, list_messages). This makes the set predictable and easy to navigate.

Tool Count5/5

With 5 tools, the server is well-scoped and focused on read-only Discord operations. Each tool covers a distinct aspect of the domain without excess or omissions that would make the set feel thin.

Completeness3/5

The tool set provides solid read coverage (guilds, channels, messages), but lacks any write operations like sending messages or creating/deleting channels. This is a notable gap for a general-purpose Discord MCP, though it may be intentional for a read-only use case.

Maintenance

ActivitySlowing
ResponsivenessNo issues