everything vs MCP-Bridge
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | MCP-Bridge by SecretiveShell | |
|---|---|---|
| Stars | ★ 85,748 | ★ 925 |
| 30d uses | — | — |
| Score | 77 | 51 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | 5 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
MCP-Bridge · Summary
MCP-Bridge acts as middleware to provide OpenAI-compatible endpoints that call MCP tools.
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-Bridge · Use cases
- Integrating MCP tools with OpenAI-based applications like Open WebUI
- Providing an OpenAI-compatible interface for legacy systems that need MCP functionality
- Simplifying the integration of multiple MCP tools into AI applications without MCP native support
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-Bridge · Install
Docker Installation
- Clone the repository
- Edit the compose.yml file to reference your config.json file
- Run with
docker-compose up --build -d
Manual Installation
- Clone the repository
- Install dependencies:
uv sync - Create a config.json file in the root directory
- Run the application:
uv run mcp_bridge/main.py
Claude Desktop Configuration
Add to Claude Desktop's config.json:
{
"mcpServers": {
"mcp-bridge": {
"command": "uvx",
"args": ["mcp-bridge"]
}
}
}