ultimate_mcp_server vs mcp-metabase-server
Side-by-side comparison to help you pick between these two MCP servers.
ultimate_mcp_server by Dicklesworthstone | mcp-metabase-server by easecloudio | |
|---|---|---|
| Stars | ★ 149 | ★ 76 |
| 30d uses | — | — |
| Score | 85 | 48 |
| Official | — | — |
| Categories | AI / LLM ToolsBrowser AutomationFile System | DatabaseProductivityAI / LLM Tools |
| Language | Python | TypeScript |
| Last commit | 2 mo ago | this month |
ultimate_mcp_server · Summary
Comprehensive MCP server providing dozens of capabilities for AI agents including LLM delegation, browser automation, document processing, and cognitive memory systems.
mcp-metabase-server · Summary
A comprehensive MCP server for Metabase providing 96 tools to manage dashboards, cards, databases, tables, and more.
ultimate_mcp_server · Use cases
- Complex document processing and analysis with OCR and structured data extraction
- Web automation and research across multiple sites with browser control
- Cost-optimized AI workflows through intelligent task delegation between models
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
ultimate_mcp_server · Install
Installation
- Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server- Install dependencies:
pip install -e .- For Claude Desktop integration, add to your claude_desktop_config.json:
{
"mcpServers": {
"ultimate-mcp": {
"command": "python",
"args": ["-m", "ultimate_mcp_server"],
"env": {
"PYTHONPATH": "."
}
}
}
}- Run the server:
python -m ultimate_mcp_servermcp-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"
}
}
}
}