ollama-mcp-bridge vs everything
Side-by-side comparison to help you pick between these two MCP servers.
ollama-mcp-bridge by jonigl | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 86 | ★ 85,748 |
| 30d uses | — | — |
| Score | 47 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsOps & Infra | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | 1 mo ago | this month |
ollama-mcp-bridge · Summary
Ollama MCP Bridge provides an API layer that integrates multiple MCP servers with the Ollama API, enabling dynamic AI tool integration for local LLM applications.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
ollama-mcp-bridge · Use cases
- Building powerful local LLM applications with extended tool capabilities
- Creating custom AI agents that can access multiple specialized tools
- Enabling Ollama to use tools from different MCP servers simultaneously
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
ollama-mcp-bridge · Install
Installation Options
**Quick Start with uvx:**
uvx ollama-mcp-bridge**Install from PyPI:**
pip install --upgrade ollama-mcp-bridge**Run with Docker:**
docker run -p 8000:8000 \
-e OLLAMA_URL=http://host.docker.internal:11434 \
-v "$PWD/mcp-config.json:/mcp-config.json" \
ghcr.io/jonigl/ollama-mcp-bridge:latest**Claude Desktop Configuration:** Add to Claude Desktop config.json:
"mcpServers": {
"ollama-bridge": {
"command": "ollama-mcp-bridge",
"args": []
}
}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