Discord MCP Server

Communicationstdio
Repository

A Model Context Protocol server that enables AI agents to interact with Discord through a bot. Agents can send and read messages in channels, list servers and channels, and manage basic server interactions while keeping the user in control. Useful for community automation, notifications, and conversational workflows on Discord.

Connect

Add this configuration to .claude/mcp.json

{
  "mcpServers": {
    "discord": {
      "command": "npx",
      "args": [
        "-y",
        "discordmcp"
      ],
      "env": {
        "DISCORD_TOKEN": "<YOUR_DISCORD_TOKEN>"
      }
    }
  }
}

Tools (2)

send_message

Send a message to a specified Discord channel.

{
  "type": "object",
  "required": [
    "channel_id",
    "content"
  ],
  "properties": {
    "content": {
      "type": "string",
      "description": "The message content to send"
    },
    "channel_id": {
      "type": "string",
      "description": "The Discord channel ID to send the message to"
    }
  }
}

read_messages

Read recent messages from a Discord channel.

{
  "type": "object",
  "required": [
    "channel_id"
  ],
  "properties": {
    "limit": {
      "type": "integer",
      "description": "Maximum number of messages to retrieve"
    },
    "channel_id": {
      "type": "string",
      "description": "The Discord channel ID to read from"
    }
  }
}

Resources

This server does not expose any resources.

Prompts

This server does not expose any prompts.

Server Information

Author
v-3 (@v-3)
Repository
https://github.com/v-3/discordmcp
License
MIT
Stars
0
Last Updated
June 12, 2026