bonnard vs ultimate_mcp_server
Side-by-side comparison to help you pick between these two MCP servers.
bonnard by bonnard-data | ultimate_mcp_server by Dicklesworthstone | |
|---|---|---|
| Stars | ★ 26 | ★ 149 |
| 30d uses | — | — |
| Score | 44 | 85 |
| Official | — | — |
| Categories | DatabaseAI / LLM ToolsDeveloper Tools | AI / LLM ToolsBrowser AutomationFile System |
| Language | TypeScript | Python |
| Last commit | 3 mo ago | 2 mo ago |
bonnard · Summary
Bonnard is an agent-native semantic layer providing MCP server capabilities for reliable data querying through AI agents.
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.
bonnard · Use cases
- AI agents querying a consistent semantic layer for analytics and reporting
- Building data applications with governed metrics and dimensions
- Embedding structured data capabilities into AI workflows through MCP
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
bonnard · Install
# 1. Scaffold project
npx @bonnard/cli init --self-hosted
# 2. Configure your data source
# Edit .env with your database credentials
# 3. Start the server
docker compose up -d
# 4. Define your semantic layer
# Add cube/view YAML files to bonnard/cubes/ and bonnard/views/
# 5. Deploy models to the server
bon deploy
# 6. Connect AI agents
bon mcpFor Claude Desktop / Cursor:
{
"mcpServers": {
"bonnard": {
"url": "https://bonnard.example.com/mcp",
"headers": {
"Authorization": "Bearer your-secret-token-here"
}
}
}
}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_server