MCP Catalogs
Home

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
Score4485
Official
Categories
DatabaseAI / LLM ToolsDeveloper Tools
AI / LLM ToolsBrowser AutomationFile System
LanguageTypeScriptPython
Last commit3 mo ago2 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 mcp

For Claude Desktop / Cursor:

{
  "mcpServers": {
    "bonnard": {
      "url": "https://bonnard.example.com/mcp",
      "headers": {
        "Authorization": "Bearer your-secret-token-here"
      }
    }
  }
}

ultimate_mcp_server · Install

Installation

  1. Clone the repository:
git clone https://github.com/Dicklesworthstone/ultimate_mcp_server.git
cd ultimate_mcp_server
  1. Install dependencies:
pip install -e .
  1. For Claude Desktop integration, add to your claude_desktop_config.json:
{
  "mcpServers": {
    "ultimate-mcp": {
      "command": "python",
      "args": ["-m", "ultimate_mcp_server"],
      "env": {
        "PYTHONPATH": "."
      }
    }
  }
}
  1. Run the server:
python -m ultimate_mcp_server
Comparison generated from public README + GitHub signals. Last updated automatically.