mcp-bridgekit vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-bridgekit by mkbhardwas12 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 60 | ★ 85,748 |
| 30d uses | — | — |
| Score | 46 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsOps & Infra | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 3 mo ago | this month |
mcp-bridgekit · Summary
A bridge that converts MCP stdio servers to HTTP endpoints with session pooling and background job handling.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-bridgekit · Use cases
- AI chatbot with tool calling capabilities
- Multi-tenant SaaS platform with customer-specific MCP tools
- Long-running data processing that exceeds HTTP timeout limits
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-bridgekit · Install
Installation
# Clone & install
git clone https://github.com/mkbhardwas12/mcp-bridgekit.git
cd mcp-bridgekit
# Copy environment config
cp .env.example .env # edit if needed
# Install (pick one)
uv sync --dev # recommended
pip install -e ".[dev]" # alternative
# Start Redis (required for job queue)
docker run -d -p 6379:6379 redis:7-alpine
# Start server
uvicorn mcp_bridgekit.app:app --reload
# Start worker
mcp-bridgekit-workereverything · 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