MCP Catalogs
Home

everything vs turbular

Side-by-side comparison to help you pick between these two MCP servers.

everything
by modelcontextprotocol
turbular
by raeudigerRaeffi
Stars★ 85,748★ 99
30d uses
Score7744
Official
Categories
Developer ToolsAI / LLM ToolsOther
DatabaseDeveloper ToolsAI / LLM Tools
LanguageTypeScriptPython
Last committhis month10 mo ago

everything · Summary

Official MCP test server exercising all protocol features for client builders.

turbular · Summary

Turbular is an MCP server that enables LLM agents to connect to and query multiple databases through a unified API interface.

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

turbular · Use cases

  • Build AI applications that need to query multiple database types
  • Enable LLM agents to access and analyze enterprise data securely
  • Create data analysis tools that work across different database systems

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

turbular · Install

Installation

  1. Clone the repository:
git clone https://github.com/raeudigerRaeffi/turbular.git
cd turbular
  1. Using Docker (Recommended):
docker-compose -f docker-compose.dev.yml up --build
  1. Manual Installation:
pip install -r requirements.txt
uvicorn app.main:app --reload

Claude Desktop Configuration

{
  "mcpServers": {
    "turbular": {
      "command": "uvicorn",
      "args": ["app.main:app", "--reload"],
      "env": {
        "PYTHONPATH": "."
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.