by aj-geddes
Integrates with Discord API for advanced server management—messaging, moderation, roles, events & more via 46+ tools. Re
Provides complete Discord API integration with 80+ tools for server automation, moderation, and management through bot or user authentication modes.
Discord is a community-built MCP server published by aj-geddes that provides AI assistants with tools and capabilities via the Model Context Protocol. Integrates with Discord API for advanced server management—messaging, moderation, roles, events & more via 46+ tools. Re It is categorized under communication, developer tools.
You can install Discord in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
MIT
Discord is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
According to our notes, Discord benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
Useful MCP listing: Discord is the kind of server we cite when onboarding engineers to host + tool permissions.
We wired Discord into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
Discord has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
Discord reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
Strong directory entry: Discord surfaces stars and publisher context so we could sanity-check maintenance before adopting.
I recommend Discord for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.
We evaluated Discord against two servers with overlapping tools; this profile had the clearer scope statement.
We wired Discord into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
Useful MCP listing: Discord is the kind of server we cite when onboarding engineers to host + tool permissions.
showing 1-10 of 35
AI-Powered Discord Server Management - A production-ready Model Context Protocol (MCP) server with 71 tools for comprehensive Discord automation through Claude AI.
Discord Agent MCP bridges Claude AI with Discord, letting you manage your server through natural language. Instead of clicking through Discord's interface or writing code, just tell Claude what you want:
"Create a gaming community server with voice channels for different games,
a welcome channel, and moderator roles"
Claude handles the rest using the 71 Discord management tools provided by this MCP server.
| Category | Tools | Description |
|---|---|---|
| Messaging | 10 | Send, edit, delete, react, pin messages |
| Channels | 10 | Create, modify, delete channels and permissions |
| Threads | 3 | Create and manage forum threads |
| Server | 7 | Settings, webhooks, invites, audit logs |
| Members | 3 | Info, listings, nicknames |
| Roles | 7 | Create, assign, modify roles |
| Moderation | 6 | Kick, ban, timeout, manage bans |
| Emojis | 4 | Custom emoji management |
| Stickers | 4 | Custom sticker management |
| Events | 6 | Scheduled events |
| Auto-Mod | 5 | Automatic moderation rules |
| Commands | 6 | Slash command management |
First-class support for Anthropic's Claude Code CLI:
claude mcp add --transport http discord-agent http://localhost:3000/mcp
git clone https://github.com/aj-geddes/discord-agent-mcp.git
cd discord-agent-mcp
npm install
cp .env.example .env
# Edit .env and add your DISCORD_TOKEN
npm run build
npm start
# Server runs at http://localhost:3000/mcp
claude mcp add --transport http discord-agent http://localhost:3000/mcp
docker build -t discord-mcp-server:latest .
docker run -d -p 3000:3000 -e DISCORD_TOKEN=your_token discord-mcp-server:latest
version: '3.8'
services:
discord-mcp:
build: .
ports:
- "3000:3000"
environment:
- DISCORD_TOKEN=${DISCORD_TOKEN}
restart: unless-stopped
kubectl apply -f k8s/
| Variable | Required | Default | Description |
|---|---|---|---|
DISCORD_TOKEN | Yes | - | Discord bot token |
TRANSPORT_MODE | No | http | http or stdio |
HTTP_PORT | No | 3000 | Server port |
LOG_LEVEL | No | info | debug, info, warn, error |
Once connected, use natural language in Claude Code:
Server Setup:
"Set up a gaming community with channels for Minecraft, Valorant, and general chat"
Moderation:
"Timeout user 123456789 for 1 hour for spam"
Events:
"Create a voice event called 'Game Night' for Saturday at 8 PM"
Automation:
"Set up auto-moderation to block spam and timeout repeat offenders"
.env files (gitignored)Contributions welcome! Please:
See CONTRIBUTING.md for guidelines.
MIT License - See LICENSE for details.
Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.