Allows interaction with Discord to send messages, read channel history, post rich embeds, and list server channels.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Discord MCP ServerSend 'The latest build is ready' to the #general channel"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Discord MCP Server
A Python MCP (Model Context Protocol) server that lets you interact with Discord directly from Claude Code sessions. Send messages, read channels, post rich embeds, and list server channels — all through natural conversation with Claude.
Prerequisites
Docker and Docker Compose installed
Claude Code CLI installed
A Discord bot token (setup guide below)
Discord Bot Setup
Go to the Discord Developer Portal
Click New Application, give it a name, and create it
Go to Bot in the left sidebar
Click Reset Token and copy the token — this is your
DISCORD_BOT_TOKENUnder Privileged Gateway Intents, enable Message Content Intent
Go to OAuth2 > URL Generator in the left sidebar
Select scopes:
botSelect bot permissions:
Send Messages,Read Message History,View ChannelsCopy the generated URL and open it in your browser to invite the bot to your server
Installation
1. Clone the repository
git clone <your-repo-url>
cd discord-mcp-server2. Set up environment variables
cp .env.example .env
# Edit .env and add your DISCORD_BOT_TOKEN and optionally DISCORD_DEFAULT_GUILD_ID3. Build the Docker image
docker compose build4. Register with Claude Code
Add the following to your Claude Code MCP settings. You can configure this in
~/.claude/settings.json (global) or .mcp.json (project-level):
{
"mcpServers": {
"discord-mcp": {
"command": "docker",
"args": [
"compose",
"-f", "/absolute/path/to/discord-mcp-server/docker-compose.yml",
"run", "--rm", "-i", "discord-mcp"
],
"env": {
"DISCORD_BOT_TOKEN": "your-bot-token-here",
"DISCORD_DEFAULT_GUILD_ID": "your-guild-id-here"
}
}
}
}Note: Replace
/absolute/path/to/discord-mcp-serverwith the actual absolute path to this project on your machine. Replace the token and guild ID with your actual values.
Usage Examples
Once configured, you can use these tools in any Claude Code session:
List channels in a server:
"Show me all the channels in my Discord server"
Send a message:
"Send 'Deployment complete!' to the #general channel"
Read recent messages:
"What are the last 5 messages in #random?"
Send a rich embed:
"Send an embed to #updates with title 'Release v2.0' and a green color, with fields for 'Changes' and 'Breaking Changes'"
Tool Reference
discord_list_channels
Lists all text channels in a Discord server.
Parameter | Type | Required | Description |
| string | Yes | Discord server/guild ID |
discord_send_message
Sends a plain text message to a channel.
Parameter | Type | Required | Description |
| string | Yes | Channel ID or name (e.g. |
| string | Yes | Message text |
| string | No | Server ID. Required if channel is a name and no default is set. |
discord_read_messages
Reads recent messages from a channel.
Parameter | Type | Required | Description |
| string | Yes | Channel ID or name |
| string | No | Server ID. Required if channel is a name and no default is set. |
| integer | No | Number of messages (default: 10, max: 50) |
discord_send_embed
Sends a rich embed message to a channel.
Parameter | Type | Required | Description |
| string | Yes | Channel ID or name |
| string | Yes | Embed title |
| string | No | Embed body text |
| integer | No | Color as decimal (e.g. |
| list | No | List of |
| string | No | Plain text alongside the embed |
| string | No | Server ID. Required if channel is a name and no default is set. |
Environment Variables
Variable | Required | Description |
| Yes | Bot token from Discord Developer Portal |
| No | Default server ID for all tool calls |
Architecture
Claude Code ←stdio→ MCP Server (Python) ←HTTPS→ Discord API v10src/discord_mcp/types.py— Pydantic models for API responses (Channel, Message, SendResult, Embed)src/discord_mcp/discord_client.py— Async Discord REST API wrapper using httpxsrc/discord_mcp/server.py— MCP tool definitions and handler functions
Key design decisions:
All Discord API interaction goes through
DiscordClient— never call httpx directly from server.pyTool handlers are separated from
@mcp.tool()decorators for testabilityChannel names are resolved case-insensitively via the Discord API
Guild ID follows a fallback chain: explicit parameter →
DISCORD_DEFAULT_GUILD_IDenv var → None
Development
Running locally (without Docker)
python -m venv .venv
source .venv/bin/activate
pip install -e ".[dev]"
export DISCORD_BOT_TOKEN=your-token
export DISCORD_DEFAULT_GUILD_ID=your-guild-id
discord-mcpRunning tests
pip install -e ".[dev]"
pytest tests/ -vTests use respx to mock httpx requests — no real Discord API calls are made.
License
MIT
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.