mcp-metabase-server vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcp-metabase-server by easecloudio | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 76 | ★ 85,748 |
| 30d uses | — | — |
| Score | 48 | 77 |
| Official | — | ✓ |
| Categories | DatabaseProductivityAI / LLM Tools | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
mcp-metabase-server · Summary
A comprehensive MCP server for Metabase providing 96 tools to manage dashboards, cards, databases, tables, and more.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcp-metabase-server · Use cases
- AI assistants can analyze business data by querying Metabase cards and dashboards
- Automate data reporting tasks through MCP tool calling
- Create and manage Metabase content programmatically via AI workflows
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-metabase-server · Install
Installation
**Using npx (Recommended):**
npx @easecloudio/mcp-metabase-server**Global install:**
npm install -g @easecloudio/mcp-metabase-server
mcp-metabase-server**Docker:**
docker build -t mcp-metabase-server .
docker run -it --rm \
-e METABASE_URL=https://your-metabase-instance.com \
-e METABASE_API_KEY=your_metabase_api_key \
mcp-metabase-serverClaude Desktop Integration
{
"mcpServers": {
"metabase": {
"command": "npx",
"args": ["@easecloudio/mcp-metabase-server"],
"env": {
"METABASE_URL": "https://your-metabase-instance.com",
"METABASE_API_KEY": "your_metabase_api_key"
}
}
}
}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