MCP Catalogs
Home

dbt-doctor vs ultimate_mcp_server

Side-by-side comparison to help you pick between these two MCP servers.

dbt-doctor
by Astoriel
ultimate_mcp_server
by Dicklesworthstone
Stars★ 134★ 149
30d uses
Score4885
Official
Categories
Developer ToolsDatabaseAI / LLM Tools
AI / LLM ToolsBrowser AutomationFile System
LanguagePythonPython
Last commit1 mo ago2 mo ago

dbt-doctor · Summary

AI-driven quality & governance MCP server for dbt projects, offering auditing, profiling, drift detection, and documentation generation.

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.

dbt-doctor · Use cases

  • Audit dbt project health with a 0-100% score based on documentation, testing, and naming conventions
  • Profile data models to generate column statistics and intelligent test suggestions
  • Automatically update schema.yml files with suggested tests and documentation

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

dbt-doctor · Install

Install dbt-doctor via pip:

pip install dbt-doctor

For Claude Desktop, add to your claude_desktop_config.json:

{
  "mcpServers": {
    "dbt-doctor": {
      "command": "dbt-doctor",
      "args": ["--project-dir", "/absolute/path/to/your/dbt/project"]
    }
  }
}

For Cursor, add to your .cursor/mcp.json:

{
  "mcpServers": {
    "dbt-doctor": {
      "command": "dbt-doctor",
      "args": ["--project-dir", "/absolute/path/to/your/dbt/project"]
    }
  }
}

Prerequisite: Run dbt compile prior to usage to ensure target/manifest.json is available.

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.