Get server information and member count
Common usage pattern for this MCP server
Ask Claude: "Get server information and member count"Discord bot integration for community management, moderation, and server automation
Enable your AI assistants to seamlessly interact with Discord servers through comprehensive bot functionality and automation capabilities.~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.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"
}
}
}
}{
"mcpServers": {
"discord-mcp": {
"command": "java",
"args": [
"-jar",
"/absolute/path/to/discord-mcp-0.0.1-SNAPSHOT.jar"
],
"env": {
"DISCORD_TOKEN": "${DISCORD_TOKEN}",
"DISCORD_GUILD_ID": "${DISCORD_GUILD_ID}"
}
}
}
}HTTP 429 rate limit error when sending messages
Discord limits 50 requests per second most endpoints. Check X-RateLimit headers for specific bucket limits. Implement request queuing with 4 requests per 100ms (40/second) to avoid throttling.
Bot gets 24-hour IP ban for invalid requests
IP addresses making 10,000+ invalid HTTP requests per 10 minutes are banned for 24 hours. Fix 401/403 errors in your code, implement proper error handling, validate requests before sending.
Bot token authentication fails with 401 error
Regenerate bot token from Discord Developer Portal. Verify DISCORD_TOKEN environment variable is set correctly. Ensure token includes Bot prefix in Authorization header: Bot YOUR_TOKEN.
Cannot access guild channels or members
Verify bot has required permissions in Discord server settings. Check DISCORD_GUILD_ID matches target server. Ensure bot has been invited with correct OAuth scopes (bot, send_messages, manage_channels, manage_roles).
Java runtime error or MCP server won't start
Install Java JDK 11 or higher. Run java -version to verify installation. Check JAR file path is absolute and file exists. Verify execute permissions on JAR file.
Common usage pattern for this MCP server
Ask Claude: "Get server information and member count"Common usage pattern for this MCP server
Ask Claude: "Create new text channels and categories"Common usage pattern for this MCP server
Ask Claude: "Manage member roles and permissions"Common usage pattern for this MCP server
Ask Claude: "Retrieve channel lists and configurations"Loading reviews...
Join our community of Claude power users. No spam, unsubscribe anytime.
Required