MCP Catalogs
Home

dbt-mcp vs mcp-redis

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

dbt-mcp
by dbt-labs
mcp-redis
by redis
Stars★ 562★ 510
30d uses
Score5354
Official
Categories
DatabaseDeveloper ToolsAI / LLM Tools
DatabaseAI / LLM ToolsDeveloper Tools
LanguagePythonPython
Last committhis monththis month

dbt-mcp · Summary

A comprehensive MCP server for dbt Core, Fusion, and Platform, providing SQL, semantic layer, and dbt CLI tools.

mcp-redis · Summary

Official Redis MCP Server providing natural language interface for AI agents to manage Redis data efficiently.

dbt-mcp · Use cases

  • AI-powered data analysis and SQL generation in dbt projects
  • Automating dbt project documentation and model lineage analysis
  • Integrating dbt with AI agents for automated data modeling and testing

mcp-redis · Use cases

  • AI assistants storing and retrieving session data in Redis
  • Vector search applications with Redis as the backend
  • Chat applications using Redis pub/sub for real-time messaging
  • Caching AI model responses and queries

dbt-mcp · Install

Installation

Claude Desktop

Add to your Claude Desktop configuration:

{
  "mcpServers": {
    "dbt": {
      "command": "npx",
      "args": ["@dbt-labs/dbt-mcp"],
      "env": {
        "DBT_PROJECT_DIR": "/path/to/your/dbt/project"
      }
    }
  }
}

Other MCP clients

Use the experimental MCP bundle (dbt-mcp.mcpb) available in the latest release assets. Follow the [mcpb CLI](https://github.com/modelcontextprotocol/mcpb) documentation to install or inspect the bundle.

npm install -g @modelcontextprotocol/mcpb
mcpb install https://github.com/dbt-labs/dbt-mcp/releases/download/vX.X.X/dbt-mcp.mcpb

mcp-redis · Install

Installation

From PyPI (recommended)

{
  "mcpServers": {
    "RedisMCPServer": {
      "command": "uvx",
      "args": [
        "--from",
        "redis-mcp-server@latest",
        "redis-mcp-server",
        "--url",
        "redis://localhost:6379/0"
      ]
    }
  }
}

From GitHub

uvx --from git+https://github.com/redis/mcp-redis.git redis-mcp-server --url redis://localhost:6379/0

Docker

docker run -d --name redis-mcp-server -e REDIS_HOST=<redis_hostname> -e REDIS_PORT=<redis_port> -e REDIS_USERNAME=<redis_username> mcp/redis
Comparison generated from public README + GitHub signals. Last updated automatically.