bookedsolidtech/discord-ops
Agency-grade Discord MCP server — multi-guild project routing, AI-native notifications, and DevOps workflows for Claude Code and other AI agents
Platform-specific configuration:
{
"mcpServers": {
"discord-ops": {
"command": "npx",
"args": [
"-y",
"discord-ops"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
Agency-grade Discord MCP server with multi-guild project routing.
[](https://github.com/bookedsolidtech/discord-ops/actions/workflows/ci.yml) [](https://www.npmjs.com/package/discord-ops) [](LICENSE)
send_message({ project: "my-app", channel: "builds" }) instead of raw channel IDs# Install
npm install -g discord-ops
# Set your bot token
export DISCORD_TOKEN="your-bot-token"
# Run health check
discord-ops health
# Start MCP server (stdio)
discord-opsAdd to your .mcp.json:
{
"mcpServers": {
"discord": {
"command": "npx",
"args": ["-y", "discord-ops"],
"env": {
"DISCORD_TOKEN": "your-bot-token"
}
}
}
}The killer feature: route messages by project name and channel alias instead of raw IDs.
~/.discord-ops.json){
"projects": {
"my-app": {
"guild_id": "123456789012345678",
"channels": {
"dev": "CHANNEL_ID",
"builds": "CHANNEL_ID",
"alerts": "CHANNEL_ID"
},
"default_channel": "dev"
}
},
"default_proLoading reviews...