MCP Catalogs
Home

mcp-servers vs everything

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

mcp-servers
by dunialabs
everything
by modelcontextprotocol
Stars★ 6★ 85,748
30d uses
Score4077
Official
Categories
Developer ToolsProductivityAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit1 mo agothis month

mcp-servers · Summary

A collection of 15+ MCP servers for popular services like Google Workspace, GitHub, Notion, and more.

everything · Summary

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

mcp-servers · Use cases

  • AI assistants managing Google Workspace accounts through Gmail, Calendar, Docs, and Sheets
  • Automating GitHub repository management and issue tracking through MCP tools
  • Integrating AI assistants with design tools like Figma and Canva for creative workflows

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-servers · Install

To install these MCP servers, you'll need to add them to your MCP configuration. For Claude Desktop, update your claude_desktop_config.json:

{
  "mcpServers": {
    "mcp-bravesearch": {
      "command": "node",
      "args": ["/path/to/mcp-servers/mcp-bravesearch/dist/index.js"]
    },
    "mcp-github": {
      "command": "node",
      "args": ["/path/to/mcp-servers/mcp-github/dist/index.js"]
    },
    
    // Add other servers as needed
  }
}

Most servers can also be run as Docker containers:

docker run -e GITHUB_TOKEN=your_token dunialabs/mcp-github:latest

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.