Discord Analysis MCP

Discord Analysis MCP

Enables LLMs to read and write Discord messages, search content, and compute channel statistics via a Discord bot.

Category
Visit Server

README

Discord Analysis MCP

A Model Context Protocol server that gives LLMs read and write access to Discord. It connects to Discord via a bot, maintains an on-demand SQLite index for fast filtering by date, user, channel, and content, uses Discord's native search API as a fast path, and can compute aggregate channel stats from the indexed data.

Features

  • Read messages by channel or thread, time range, author, or mentions
  • Search messages by content using Discord native search when possible, with optional exhaustive SQLite FTS fallback
  • Channel stats for message volume, top posters, daily activity, replies, attachments, embeds, and keyword counts
  • Message context — load any message with up to 50 messages before and 50 after
  • Send messages and replies to channels and threads
  • On-demand indexing — fetches and caches messages as needed, no background sync
  • Compact output — human-readable text responses optimized for LLM context windows

Prerequisites

  • Node.js >= 20
  • A Discord bot token with the following gateway intents enabled: Guilds, Guild Messages, Guild Members, Message Content
  • The bot must be invited to the target guild with the bot scope.
  • Required permissions depend on the features you plan to use: View Channel, Read Message History, and Send Messages

Quick Start

git clone https://github.com/webhead2oo9/DiscordMCP.git
cd DiscordMCP
npm install
cp .env.example .env
cp discord-mcp.config.example.json discord-mcp.config.json

Edit .env and set your DISCORD_BOT_TOKEN. Edit discord-mcp.config.json and set your guildId.

npm run build

Adding to Codex

Recommended: add the server to ~/.codex/config.toml (or .codex/config.toml in a trusted project) so Codex can forward DISCORD_BOT_TOKEN from your shell instead of storing it in plain text.

[mcp_servers."discord-analysis"]
command = "node"
args = ["/absolute/path/to/DiscordMCP/dist/src/index.js"]
env_vars = ["DISCORD_BOT_TOKEN"]

[mcp_servers."discord-analysis".env]
DISCORD_MCP_CONFIG = "/absolute/path/to/DiscordMCP/discord-mcp.config.json"

Start Codex from a shell where DISCORD_BOT_TOKEN is already exported, then verify the server is enabled:

export DISCORD_BOT_TOKEN=your-bot-token
codex mcp list

If you prefer the CLI, this also works:

codex mcp add discord-analysis \
  --env DISCORD_BOT_TOKEN=your-bot-token \
  --env DISCORD_MCP_CONFIG=/absolute/path/to/DiscordMCP/discord-mcp.config.json \
  -- node /absolute/path/to/DiscordMCP/dist/src/index.js

The CLI form writes both env values into Codex config, so prefer the config.toml example above if you do not want to store the bot token there.

Verify with codex mcp list, then restart Codex if it was already running. In the Codex TUI, use /mcp to inspect active servers.

Adding to Claude Code

claude mcp add-json discord-analysis '{
  "type": "stdio",
  "command": "node",
  "args": ["/absolute/path/to/DiscordMCP/dist/src/index.js"],
  "env": {
    "DISCORD_BOT_TOKEN": "your-bot-token",
    "DISCORD_MCP_CONFIG": "/absolute/path/to/DiscordMCP/discord-mcp.config.json"
  }
}' --scope user

Use --scope local instead of --scope user to limit the server to the current project.

The server resolves discord-mcp.config.json relative to its working directory unless DISCORD_MCP_CONFIG or DISCORD_MCP_CONFIG_PATH is set, so using an absolute config path is the most reliable option. Relative sqlitePath values inside that config file are resolved relative to the config file's directory.

Verify with claude mcp list, then restart Claude Code. The six discord_* tools and four discord:// resources will appear in your session.

Adding to Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "discord-analysis": {
      "command": "node",
      "args": ["/absolute/path/to/DiscordMCP/dist/src/index.js"],
      "env": {
        "DISCORD_BOT_TOKEN": "your-bot-token",
        "DISCORD_MCP_CONFIG": "/absolute/path/to/DiscordMCP/discord-mcp.config.json"
      }
    }
  }
}

Restart Claude Desktop to load the server.

Tools

Tool Description
discord_list_channels List visible channels and threads in the configured guild (forum parents are excluded)
discord_read_messages Read messages by channel or thread, time range, author, or mentions
discord_search_messages Search by content using native Discord search as a fast path with optional exhaustive SQLite fallback
discord_get_message_context Load a message with up to 50 messages before and 50 after
discord_send_message Send a message or reply to a channel/thread
discord_channel_stats Get aggregate channel stats including message volume, replies, media counts, top posters, daily activity, and keyword counts

Resources

URI Description
discord://channels Channel/thread list with sync coverage
discord://sync-status Indexed coverage windows by channel
discord://channel/{channelId}/recent Recent messages for a channel or thread
discord://message/{messageId} A single message record

Configuration

discord-mcp.config.json:

Key Description Default
guildId Discord guild (server) ID required
sqlitePath Path to the SQLite database file; relative paths are resolved from this config file's directory ./.data/discord-mcp.sqlite
recentResourceWindowHours Lookback window for the recent messages resource 24
nativeSearch.timeoutMs Timeout for native search requests 5000
sync.freshnessMinutes Currently unused; reserved for future cache staleness logic 15
sync.defaultLookbackDays Default time range when start_time is omitted 30
sync.maxMessagesPerSync Raw-message fetch batch size used during on-demand sync and exhaustive backfills 500
channelAliases Map of alias names to channel IDs for convenient references {}
excludedChannels Channel IDs or names to hide from all operations []
excludedCategories Category IDs or names whose channels are hidden from all operations []

Notes

  • Forum parent channels are not directly targetable. Use the visible forum post threads returned by discord_list_channels.
  • Author/mention filters and ascending reads may request larger sync batches to produce complete local results.
  • Exhaustive searches and channel stats may paginate across multiple sync.maxMessagesPerSync batches per channel, subject to an internal safety limit.
  • Native Discord search is used as a best-effort accelerator. By default the server returns native hits immediately when they are usable; set exhaustive: true on discord_search_messages to force a full local fallback across the requested window.
  • discord_channel_stats attachment and embed totals count actual attachment/embed items, not just the number of messages that contained media.

Development

npm run dev        # Run with tsx (no build step)
npm test           # Run tests
npm run check      # Build + test

License

MIT

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured