everything vs mcp-copilot
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | mcp-copilot by tshu-w | |
|---|---|---|
| Stars | ★ 85,748 | ★ 18 |
| 30d uses | — | — |
| Score | 77 | 37 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | 12 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-copilot · Summary
A meta MCP server that automatically routes queries to 1000+ MCP servers without overwhelming the LLM.
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-copilot · Use cases
- Organizing access to hundreds of MCP servers in a single interface
- Distributing complex queries across specialized MCP tools
- Creating a scalable tool ecosystem for large language models
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-everythingmcp-copilot · Install
Installation
Using uv (recommended)
No specific installation needed. Use uvx to directly run *mcp-server-copilot*:
uvx mcp-server-copilot --config ~/.config/mcp-server-copilot/config.jsonUsing PIP
Alternatively, install via pip:
pip install mcp-server-copilotThen run as a script:
python -m mcp_server_copilotConfiguration
Add to your MCP Client settings:
{
"mcpServers": {
"copilot": {
"command": "uvx",
"args": ["mcp-server-copilot", "--config", "~/.config/mcp-server-copilot/config.json"]
}
}
}