Skip to main content
Glama
vovafes

Discord MCP Server

by vovafes

๐Ÿค– Discord MCP Server

Give Claude full access to Discord.
Read messages, send messages, manage threads, react, search history, send DMs โ€” all through natural conversation.

Made by Claude for Claude MCP License: MIT


What is this?

Discord MCP Server is a Model Context Protocol server that bridges Claude and Discord. Once connected, you can talk to Claude in plain English and it will interact with your Discord account โ€” no scripting, no dashboards, no manual API calls.

Uses a Discord user token โ€” no bot registration needed.


Related MCP server: Discord MCP Server

Demo

You: "What are the last 15 messages in #general?"
You: "Send a message to #announcements: deployment done โœ…"
You: "Search #support for messages about 'login error'"
You: "DM user 123456789 and say hey, got a minute?"
You: "Create a thread called 'Release notes' from that last message"
You: "What are my recent mentions across all servers?"
You: "React to message 987654321 with ๐Ÿ‘"

Tools

Tool

Description

get_bot_info

Connected account info (username, ping, server count)

list_guilds

All Discord servers you're in

get_guild_info

Server details: members, boosts, verification level, etc.

list_channels

All channels in a server, sorted by position

get_channel_info

Info about a specific channel

get_messages

Fetch recent messages (up to 100), with pagination

send_message

Send a message, with optional reply

send_embed

Send a rich embed (title, description, fields, color, footer)

edit_message

Edit one of your own messages

delete_message

Delete a message

pin_message

Pin or unpin a message

add_reaction

React with a Unicode or custom emoji

create_thread

Start a thread from a message or create a standalone one

list_members

List server members with roles (up to 1 000)

get_user_info

Full profile of a user in a server

search_messages

Keyword search across recent channel history

get_pinned_messages

All pinned messages in a channel

get_dm_channels

List your open DM conversations

send_dm

Send a direct message to any user by ID

get_mentions

Recent messages that mention you across all servers


Requirements


Setup

1. Get your Discord User Token

  1. Open Discord in your browser at discord.com/app

  2. Press F12 โ†’ Network tab

  3. Send any message or switch a channel

  4. Find any request to discord.com/api, click it, look at Request Headers

  5. Copy the value of the Authorization header โ€” that's your token

Or paste this in the browser Console:

(webpackChunkdiscord_app.push([[''],{},e=>{m=[];for(let c in e.c)m.push(e.c[c])}]),m)
  .find(m=>m?.exports?.default?.getToken!==void 0).exports.default.getToken()

โš ๏ธ Your user token = your password. Never share it, commit it to git, or put it in public config files.


2. Install

git clone https://github.com/vovafes/discord-mcp-server.git
cd discord-mcp-server
npm install
npm run build

3. Connect to Claude Desktop

Edit your Claude Desktop config:

  • macOS โ†’ ~/Library/Application Support/Claude/claude_desktop_config.json

  • Windows โ†’ %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "discord": {
      "command": "node",
      "args": ["/absolute/path/to/discord-mcp-server/dist/index.js"],
      "env": {
        "DISCORD_USER_TOKEN": "YOUR_TOKEN_HERE"
      }
    }
  }
}

Restart Claude Desktop โ€” the Discord tools will appear automatically.


4. Connect to Claude Code CLI

claude mcp add discord \
  --env DISCORD_USER_TOKEN=YOUR_TOKEN_HERE \
  -- node /absolute/path/to/discord-mcp-server/dist/index.js

Configuration

Variable

Required

Default

Description

DISCORD_USER_TOKEN

โœ…

โ€”

Your Discord user token

REQUEST_DELAY_MS

โŒ

5000

Delay between REST calls in ms. Lower = faster, higher = safer.


Rate-Limit Protection

Discord enforces strict limits on user tokens. Three layers of protection are built in:

Global throttle

Every REST call passes through a shared gate that enforces a minimum gap of REQUEST_DELAY_MS (default 5 seconds) between consecutive requests.

Exponential back-off

On a 429 Too Many Requests response, the server automatically retries:

attempt 1 โ†’ wait 2s
attempt 2 โ†’ wait 4s
attempt 3 โ†’ wait 8s
attempt 4 โ†’ wait 16s  (then give up)

Hard scan caps

Bulk tools that touch many channels are capped to prevent runaway API storms:

Tool

Limit

search_messages

Max 500 messages (5 batches ร— 100)

get_mentions

Max 20 channels scanned across all servers

To tune the throttle:

"env": {
  "DISCORD_USER_TOKEN": "...",
  "REQUEST_DELAY_MS": "2000"
}

Architecture

โ•”โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•—
โ•‘  Claude / MCP    โ•‘
โ•‘     Client       โ•‘
โ•šโ•โ•โ•โ•โ•โ•โ•โ•โ•คโ•โ•โ•โ•โ•โ•โ•โ•โ•โ•
         โ”‚ stdio (JSON-RPC)
โ•”โ•โ•โ•โ•โ•โ•โ•โ•โ–ผโ•โ•โ•โ•โ•โ•โ•โ•โ•โ•—
โ•‘  discord-mcp     โ•‘  โ† this server
โ•‘  (Node.js)       โ•‘
โ•šโ•โ•โ•โ•โ•โ•โ•โ•โ•คโ•โ•โ•โ•โ•โ•โ•โ•โ•โ•
         โ”‚ discord.js (WebSocket + REST)
โ•”โ•โ•โ•โ•โ•โ•โ•โ•โ–ผโ•โ•โ•โ•โ•โ•โ•โ•โ•โ•—
โ•‘  Discord API     โ•‘
โ•šโ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•โ•

The server speaks MCP over stdio โ€” no open ports, no HTTP server. The MCP host (Claude Desktop, Claude Code, etc.) spawns it as a subprocess.


Development

# Dev mode โ€” no build step needed
DISCORD_USER_TOKEN=your_token npm run dev

# Build
npm run build

# Run built output
DISCORD_USER_TOKEN=your_token npm start

Made by Claude for Claude ๐Ÿค–

Built with discord.js ยท Model Context Protocol SDK

Install Server
A
license - permissive license
B
quality
B
maintenance

Maintenance

โ€“Maintainers
โ€“Response time
โ€“Release cycle
โ€“Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • F
    license
    -
    quality
    B
    maintenance
    Enables interaction with Discord through natural language, including reading and sending messages, managing servers, and user actions.
  • A
    license
    -
    quality
    D
    maintenance
    Enables AI agents to interact with Discord through the REST API and real-time events, supporting message management, user info, channel operations, and more with security controls.
    25
    1
    MIT
  • A
    license
    -
    quality
    D
    maintenance
    Enables Claude to manage Discord servers through the Discord API, supporting server info, messaging, channel management, webhooks, and user interactions.
    10
    MIT
  • A
    license
    -
    quality
    D
    maintenance
    Enables Claude Code to interact with Discord servers, including sending messages, reading channels, managing threads, and adding reactions via natural language commands.
    14
    MIT

View all related MCP servers

Related MCP Connectors

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/vovafes/discord-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server