Discord MCP Server

Communicationstdio
Репозиторий

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.

Подключение

Добавьте эту конфигурацию в .claude/mcp.json

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

Инструменты (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"
    }
  }
}

Ресурсы

Этот сервер не предоставляет ресурсы.

Промпты

Этот сервер не предоставляет промпты.

Сведения о сервере

Автор
v-3 (@v-3)
Репозиторий
https://github.com/v-3/discordmcp
Лицензия
MIT
Звёзды
0
Последнее обновление
12 июня 2026 г.