everything vs mindbridge-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | mindbridge-mcp by pinkpixel-dev | |
|---|---|---|
| Stars | ★ 85,748 | ★ 34 |
| 30d uses | — | — |
| Score | 77 | 44 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 2 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mindbridge-mcp · Summary
MindBridge is an AI orchestration MCP server that unifies access to multiple LLM providers through a single API.
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
mindbridge-mcp · Use cases
- Building agent systems that need to leverage multiple LLM providers simultaneously
- Creating AI orchestration engines that intelligently route queries to specialized models
- Developing reasoning-heavy applications that compare multiple model outputs
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-everythingmindbridge-mcp · Install
Installation
Option 1: Install from npm
# Install globally
npm install -g @pinkpixel/mindbridge
# use with npx
npx @pinkpixel/mindbridgeOption 2: Install via Smithery
npx -y @smithery/cli install @pinkpixel-dev/mindbridge-mcp --client claudeOption 3: Install from source
git clone https://github.com/pinkpixel-dev/mindbridge.git
cd mindbridge
chmod +x install.sh
./install.sh
cp .env.example .envClaude Desktop Configuration
Add this to your Claude Desktop configuration file:
{
"mcpServers": {
"mindbridge": {
"command": "npx",
"args": [
"-y",
"@pinkpixel/mindbridge"
],
"env": {
"OPENAI_API_KEY": "OPENAI_API_KEY_HERE",
"ANTHROPIC_API_KEY": "ANTHROPIC_API_KEY_HERE"
}
}
}
}