MCP Catalogs
Home

guildbridge vs everything

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

guildbridge
by dend
everything
by modelcontextprotocol
Stars★ 15★ 85,748
30d uses
Score4277
Official
Categories
CommunicationDeveloper ToolsSecurity
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit1 mo agothis month

guildbridge · Summary

A remote MCP server for Discord that allows AI agents to read, search, and post messages in Discord servers with authenticated access.

everything · Summary

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

guildbridge · Use cases

  • AI assistants monitoring Discord conversations and providing responses
  • Automated content moderation in Discord communities
  • Integrating Discord discussions with AI-powered knowledge bases

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

guildbridge · Install

Installation & Setup

  1. **Prerequisites**:

- Node.js (v18+) - Cloudflare account - Discord application with bot user and OAuth2 configured

  1. **Discord App Setup**:

- Create Discord app with bot user - Configure OAuth2 with required scopes - Enable Message Content Intent - Invite bot to servers with necessary permissions

  1. **Local Development**:

``bash npm install cp wrangler.jsonc.example wrangler.jsonc cp .dev.vars.example .dev.vars npm run dev ``

  1. **Deploy to Cloudflare**:

Use Terraform or manual setup with Wrangler CLI to provision resources and deploy.

  1. **Connect MCP Client**:

Point any MCP-compatible client at https://<your-worker>.workers.dev/mcp

For Claude Desktop, add to claude_desktop_config.json:

{
  "mcpServers": {
    "discord": {
      "command": "npx",
      "args": ["@modelcontextprotocol/server-discord"],
      "env": {
        "DISCORD_URL": "https://<your-worker>.workers.dev/mcp"
      }
    }
  }
}

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
Comparison generated from public README + GitHub signals. Last updated automatically.