MCP Catalogs
Home

dbhub vs mcp-redis

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

dbhub
by bytebase
mcp-redis
by redis
Stars★ 2,769★ 510
30d uses
Score5754
Official
Categories
DatabaseDeveloper ToolsOps & Infra
DatabaseAI / LLM ToolsDeveloper Tools
LanguageTypeScriptPython
Last commit1 mo agothis month

dbhub · Summary

A zero-dependency MCP server connecting to multiple databases with token-efficient SQL tools.

mcp-redis · Summary

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

dbhub · Use cases

  • Database exploration and schema inspection for developers
  • Secure SQL query execution with safety controls in CI/CD pipelines
  • Multi-database management and operations through a unified interface

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

dbhub · Install

Installation

**Docker:**

docker run --rm --init \   --name dbhub \   --publish 8080:8080 \   bytebase/dbhub \   --transport http \   --port 8080 \   --dsn "postgres://user:password@localhost:5432/dbname?sslmode=disable"

**NPM:**

npx @bytebase/dbhub@latest --transport http --port 8080 --dsn "postgres://user:password@localhost:5432/dbname?sslmode=disable"

**Demo Mode:**

npx @bytebase/dbhub@latest --transport http --port 8080 --demo

Claude Desktop Configuration

Add the following to your Claude Desktop configuration:

{
  "mcpServers": {
    "dbhub": {
      "command": "npx",
      "args": ["@bytebase/dbhub@latest", "--transport", "stdio"]
    }
  }
}

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.