MCP Catalogs
Home

everything vs discord-mcp

Side-by-side comparison to help you pick between these two MCP servers.

everything
by modelcontextprotocol
discord-mcp
by SaseQ
Stars★ 85,748★ 310
30d uses
Score7751
Official
Categories
Developer ToolsAI / LLM ToolsOther
CommunicationDeveloper ToolsProductivity
LanguageTypeScriptJava
Last committhis month1 mo ago

everything · Summary

Official MCP test server exercising all protocol features for client builders.

discord-mcp · Summary

A Java-based MCP server that enables AI assistants to interact with Discord via comprehensive channel, message, and user management 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

discord-mcp · Use cases

  • AI-powered Discord bot that can automatically respond to messages or moderate content
  • Integration between Discord and other systems for automated notifications and workflows
  • AI assistants that can monitor Discord channels and provide insights or summaries of discussions

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

discord-mcp · Install

Docker Installation (Recommended)

  1. Set environment variables:
export DISCORD_TOKEN="YOUR_DISCORD_BOT_TOKEN"
export DISCORD_GUILD_ID="OPTIONAL_DEFAULT_SERVER_ID"
export SPRING_PROFILES_ACTIVE=http
  1. Run the Docker container:
docker run -d -i \
  --name discord-mcp \
  --restart unless-stopped \
  -p 8085:8085 \
  -e SPRING_PROFILES_ACTIVE \
  -e DISCORD_TOKEN \
  -e DISCORD_GUILD_ID \
  saseq/discord-mcp:latest

Claude Desktop Connection

{
  "mcpServers": {
    "discord-mcp": {
      "url": "http://localhost:8085/mcp"
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.