metamcp vs everything
Side-by-side comparison to help you pick between these two MCP servers.
metamcp by metatool-ai | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 2,328 | ★ 85,748 |
| 30d uses | — | — |
| Score | 55 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsOps & InfraAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 3 mo ago | this month |
metamcp · Summary
MetaMCP is a unified MCP proxy that aggregates multiple MCP servers into one with middleware support.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
metamcp · Use cases
- Grouping multiple MCP servers into a single namespace with a public endpoint
- Remixing MCP servers by selecting specific tools for specific use cases
- Enhanced debugging and inspection of MCP server configurations
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
metamcp · Install
Installation
- **Docker Compose (Recommended)**:
git clone https://github.com/metatool-ai/metamcp.git
cd metamcp
cp example.env .env
docker compose up -d- **Local Development**:
pnpm install
pnpm devClaude Desktop Configuration
Add to claude_desktop_config.json:
{
"mcpServers": {
"metamcp": {
"command": "docker",
"args": ["run", "--rm", "metatool-ai/metamcp"]
}
}
}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