MCP Catalogs
Home

dbt-doctor vs everything

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

dbt-doctor
by Astoriel
everything
by modelcontextprotocol
Stars★ 134★ 85,748
30d uses
Score4877
Official
Categories
Developer ToolsDatabaseAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last commit1 mo agothis month

dbt-doctor · Summary

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

everything · Summary

Official MCP test server exercising all protocol features for client builders.

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

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

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.

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
Comparison generated from public README + GitHub signals. Last updated automatically.