everything vs ollama-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | ollama-mcp by rawveg | |
|---|---|---|
| Stars | ★ 85,748 | ★ 160 |
| 30d uses | — | — |
| Score | 77 | 47 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | this month | 6 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
ollama-mcp · Summary
TypeScript MCP server exposing complete Ollama SDK with 14 tools for local LLM integration.
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 · Use cases
- Enable Claude Desktop to interact with local Ollama models for enhanced privacy
- Provide AI assistants with web search capabilities through Ollama Cloud
- Integrate local LLM functionality into VS Code via Cline
- Manage local models with pull, delete, and create operations
- Generate embeddings and chat completions using local models
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-everythingollama-mcp · Install
Quick Start with Claude Desktop
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"ollama": {
"command": "npx",
"args": ["-y", "ollama-mcp"]
}
}
}Global Installation
npm install -g ollama-mcpFor Cline (VS Code)
Add to your Cline MCP settings (cline_mcp_settings.json):
{
"mcpServers": {
"ollama": {
"command": "npx",
"args": ["-y", "ollama-mcp"]
}
}
}