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 | — | — |
| Score | 77 | 44 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | DatabaseDeveloper ToolsAI / LLM Tools |
| Language | TypeScript | Python |
| Last commit | this month | 10 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-everythingturbular · Install
Installation
- Clone the repository:
git clone https://github.com/raeudigerRaeffi/turbular.git
cd turbular- Using Docker (Recommended):
docker-compose -f docker-compose.dev.yml up --build- Manual Installation:
pip install -r requirements.txt
uvicorn app.main:app --reloadClaude Desktop Configuration
{
"mcpServers": {
"turbular": {
"command": "uvicorn",
"args": ["app.main:app", "--reload"],
"env": {
"PYTHONPATH": "."
}
}
}
}