Skip to main content
Glama
taigikeyboard

discord-mcp

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
DISCORD_BOT_TOKENYesDiscord 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

CapabilityDetails
tools
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
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. tags are tag names or IDs.

reply_postC

Send a message in a forum post or thread.

set_tagsC

Replace tags on a forum post. tags are tag names or IDs.

add_tagsB

Add tags to a forum post. tags are tag names or IDs.

remove_tagsB

Remove tags from a forum post. tags are tag names or IDs.

close_postA

Archive a forum post. lock=True also prevents reopening.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

B3.3/5.0

Scored across 10 tools

Disambiguation4/5

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.

Naming Consistency5/5

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.

Tool Count5/5

Ten tools is well-scoped for a Discord forum-focused server. Each tool addresses a necessary operation without excessive redundancy or missing core actions.

Completeness4/5

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.