Track MCP LogoTrack MCP
Track MCP LogoTrack MCP

The world's largest repository of Model Context Protocol servers. Discover, explore, and submit MCP tools.

Product

  • Categories
  • Top MCP
  • New & Updated
  • Submit MCP

Company

  • About

Legal

  • Privacy Policy
  • Terms of Service
  • Cookie Policy

© 2026 TrackMCP. All rights reserved.

Built with ❤️ by Krishna Goyal

    Discord Mcp

    A MCP server for the Discord integration. Enable your AI assistants to seamlessly interact with Discord.

    99 stars
    Java
    Updated Oct 19, 2025
    ai
    claude
    discord
    discord-bot
    java
    mcp
    mcp-server
    n8n

    Table of Contents

    • 📖 Description
    • 🔬 Installation
    • ► 🐳 Docker Installation (Recommended)
    • Clone the repository
    • Build the project
    • Configure AI client
    • 🛠️ Available Tools
    • Server Information
    • User Management
    • Message Management
    • Channel Management
    • Category Management
    • Webhook Management
    • Role Management

    Table of Contents

    • 📖 Description
    • 🔬 Installation
    • ► 🐳 Docker Installation (Recommended)
    • Clone the repository
    • Build the project
    • Configure AI client
    • 🛠️ Available Tools
    • Server Information
    • User Management
    • Message Management
    • Channel Management
    • Category Management
    • Webhook Management
    • Role Management

    Documentation

    📖 Description

    A Model Context Protocol (MCP) server for the Discord API (JDA),

    allowing seamless integration of Discord Bot with MCP-compatible applications like Claude Desktop.

    Enable your AI assistants to seamlessly interact with Discord. Manage channels, send messages, and retrieve server information effortlessly. Enhance your Discord experience with powerful automation capabilities.

    🔬 Installation

    ► 🐳 Docker Installation (Recommended)

    NOTE: Docker installation is required. Full instructions can be found on docker.com.

    json
    {
      "mcpServers": {
        "mcp-server": {
          "command": "docker",
          "args": [
            "run", "--rm", "-i",
            "-e", "DISCORD_TOKEN=",
            "-e", "DISCORD_GUILD_ID=",
            "saseq/discord-mcp:latest"
          ]
        }
      }
    }

    🔧 Manual Installation

    Clone the repository

    bash
    git clone https://github.com/SaseQ/discord-mcp

    Build the project

    NOTE: Maven installation is required to use the mvn command. Full instructions can be found here.

    bash
    cd discord-mcp
    mvn clean package # The jar file will be available in the /target directory

    Configure AI client

    Many code editors and other AI clients use a configuration file to manage MCP servers.

    The Discord MPC server can be configured by adding the following to your configuration file.

    NOTE: You will need to create a Discord Bot token to use this server. Instructions on how to create a Discord Bot token can be found here.

    json
    {
      "mcpServers": {
        "discord-mcp": {
          "command": "java",
          "args": [
            "-jar",
            "/absolute/path/to/discord-mcp-0.0.1-SNAPSHOT.jar"
          ],
          "env": {
            "DISCORD_TOKEN": "YOUR_DISCORD_BOT_TOKEN",
            "DISCORD_GUILD_ID": "OPTIONAL_DEFAULT_SERVER_ID"
          }
        }
      }
    }

    The DISCORD_GUILD_ID environment variable is optional. When provided, it sets a default Discord server ID so any tool that accepts a guildId parameter can omit it.

    🦞 OpenClaw Installation

    Run this command.

    bash
    openclaw mcp add \
      --name discord \
      --transport stdio \
      --command "docker" \
      --args "run" \
      --args "--rm" \
      --args "-i" \
      --args "-e" --args "DISCORD_TOKEN=" \
      --args "-e" --args "DISCORD_GUILD_ID=" \
      --args "saseq/discord-mcp:latest"

    OR

    Pasting the following configuration into your OpenClaw ~/.openclaw/config.json or mcp_servers.json file.

    json
    {
      "mcpServers": {
        "mcp-server": {
          "command": "docker",
          "args": [
            "run", "--rm", "-i",
            "-e", "DISCORD_TOKEN=",
            "-e", "DISCORD_GUILD_ID=",
            "saseq/discord-mcp:latest"
          ]
        }
      }
    }

    🖲 Cursor Installation

    Go to: Settings -> Cursor Settings -> MCP -> Add new global MCP server

    Pasting the following configuration into your Cursor ~/.cursor/mcp.json file is the recommended approach. You may also install in a specific project by creating .cursor/mcp.json in your project folder. See Cursor MCP docs for more info.

    json
    {
      "mcpServers": {
        "mcp-server": {
          "command": "docker",
          "args": [
            "run", "--rm", "-i",
            "-e", "DISCORD_TOKEN=",
            "-e", "DISCORD_GUILD_ID=",
            "saseq/discord-mcp:latest"
          ]
        }
      }
    }

    ⌨️ Claude Code Installation

    Run this command. See Claude Code MCP docs for more info.

    bash
    claude mcp add mcp-server -- docker run --rm -i -e DISCORD_TOKEN= -e DISCORD_GUILD_ID= saseq/discord-mcp:latest

    🛠️ Available Tools

    Server Information

    • [get_server_info](): Get detailed discord server information

    User Management

    • [get_user_id_by_name](): Get a Discord user's ID by username in a guild for ping usage ``
    • [send_private_message](): Send a private message to a specific user
    • [edit_private_message](): Edit a private message from a specific user
    • [delete_private_message](): Delete a private message from a specific user
    • [read_private_messages](): Read recent message history from a specific user

    Message Management

    • [send_message](): Send a message to a specific channel
    • [edit_message](): Edit a message from a specific channel
    • [delete_message](): Delete a message from a specific channel
    • [read_messages](): Read recent message history from a specific channel
    • [add_reaction](): Add a reaction (emoji) to a specific message
    • [remove_reaction](): Remove a specified reaction (emoji) from a message

    Channel Management

    • [create_text_channel](): Create text a channel
    • [delete_channel](): Delete a channel
    • [find_channel](): Find a channel type and ID using name and server ID
    • [list_channels](): List of all channels

    Category Management

    • [create_category](): Create a new category for channels
    • [delete_category](): Delete a category
    • [find_category](): Find a category ID using name and server ID
    • [list_channels_in_category](): List of channels in a specific category

    Webhook Management

    • [create_webhook](): Create a new webhook on a specific channel
    • [delete_webhook](): Delete a webhook
    • [list_webhooks](): List of webhooks on a specific channel
    • [send_webhook_message](): Send a message via webhook

    Role Management

    • [list_roles](): Get a list of all roles on the server with their details
    • [create_role](): Create a new role on the server
    • [edit_role](): Modify an existing role's settings
    • [delete_role](): Permanently delete a role from the server
    • [assign_role](): Assign a role to a user
    • [remove_role](): Remove a role from a user

    If DISCORD_GUILD_ID is set, the guildId parameter becomes optional for all tools above.

    A more detailed examples can be found in the Wiki.

    Similar MCP

    Based on tags & features

    • AW

      Aws Mcp Server

      Python·
      165
    • CO

      Code To Tree

      C·
      60
    • MC

      Mcp Open Library

      TypeScript·
      42
    • MC

      Mcp Ipfs

      TypeScript·
      11

    Trending MCP

    Most active this week

    • PL

      Playwright Mcp

      TypeScript·
      22.1k
    • SE

      Serena

      Python·
      14.5k
    • MC

      Mcp Playwright

      TypeScript·
      4.9k
    • MC

      Mcp Server Cloudflare

      TypeScript·
      3.0k
    View All MCP Servers

    Similar MCP

    Based on tags & features

    • AW

      Aws Mcp Server

      Python·
      165
    • CO

      Code To Tree

      C·
      60
    • MC

      Mcp Open Library

      TypeScript·
      42
    • MC

      Mcp Ipfs

      TypeScript·
      11

    Trending MCP

    Most active this week

    • PL

      Playwright Mcp

      TypeScript·
      22.1k
    • SE

      Serena

      Python·
      14.5k
    • MC

      Mcp Playwright

      TypeScript·
      4.9k
    • MC

      Mcp Server Cloudflare

      TypeScript·
      3.0k