mcp-discord vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-discord by barryyip0625 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 84 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | CommunicationDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
mcp-discord · Summary
A complete MCP server for Discord integration, enabling AI assistants to manage servers, channels, messages, roles, and more.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-discord · Use cases
- Automating Discord server management and moderation tasks
- Creating AI-powered Discord bots that can interact with channels and users
- Building custom integrations between Discord and other AI tools
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
mcp-discord · Install
Installation
NPM
npx mcp-discord --config ${DISCORD_TOKEN}Docker
docker pull barryy625/mcp-discord:latest
docker run -e DISCORD_TOKEN=your_discord_bot_token -p 8080:8080 barryy625/mcp-discord:latestClaude Desktop Configuration
{
"mcpServers": {
"discord": {
"command": "node",
"args": [
"path/to/mcp-discord/build/index.js"
],
"env": {
"DISCORD_TOKEN": "your_discord_bot_token"
}
}
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything