mcp-server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-server by keboola | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 84 | ★ 85,748 |
| 30d uses | — | — |
| Score | 46 | 77 |
| Official | — | ✓ |
| Categories | DatabaseDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | Python | TypeScript |
| Last commit | this month | this month |
mcp-server · Summary
Keboola MCP Server bridges AI agents with Keboola platform, exposing data, SQL queries, and job triggers as MCP tools.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-server · Use cases
- AI agents access and query Keboola data tables directly using MCP tools
- Natural language creation of SQL transformations within AI assistants
- Building automated data workflows triggered by AI agents
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-server · Install
Installation
Remote MCP Server (Recommended)
- Navigate to your Keboola Project Settings →
MCP Servertab - Copy the server URL (format:
https://mcp.<YOUR_REGION>.keboola.com/mcp) - Configure your AI assistant with the URL
- Authenticate with your Keboola account
Claude Desktop Integration
{
"mcpServers": {
"keboola": {
"command": "http",
"args": ["https://mcp.<YOUR_REGION>.keboola.com/mcp"]
}
}
}Local Development
- Install Python 3.10+ and
uv - Clone the repository
- Set environment variables:
- KBC_STORAGE_TOKEN - KBC_STORAGE_API_URL - KBC_WORKSPACE_SCHEMA - Optional: KBC_BRANCH_ID
- Start the server:
``bash python -m mcp_server --transport <stdio|streamable-http> ``
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