loading…
Search for a command to run...
loading…
An MCP server that enables Claude Desktop to interact with Discord through a dedicated bot. It allows users to list channels, read message history, and send mes
An MCP server that enables Claude Desktop to interact with Discord through a dedicated bot. It allows users to list channels, read message history, and send messages directly from the AI interface.
Connect Claude Desktop to Discord using MCP (Model Context Protocol).
get_channel — list channels read_message — read messages send_message — send messagesClaude → MCP Server → Discord Bot → Discord
MCP DISCORD/
├── server.py
├── assets/
│ ├── list_channels.png
│ ├── read_messages.png
│ └── send_message.png
├── .env
├── pyproject.toml
└── README.md



uv sync
or
pip install mcp discord.py python-dotenv pydantic
.envDISCORD_TOKEN=your_token_here
{
"mcpServers": {
"discord": {
"command": "uv",
"args": [
"--directory",
"C:/path/to/MCP DISCORD",
"run",
"server.py"
],
"env": {
"DISCORD_TOKEN": "your_token"
}
}
}
}
uv run server.py
List channels in server 123
Read last 10 messages from channel 456
Send "Hello" to channel 456
Dioubi Issam Ai developer
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"discord-mcp-server": {
"command": "npx",
"args": []
}
}
}