StackMCP
Advanced

Database Administrator Stack

Manage, optimize, and monitor multiple database engines from a single AI-powered interface for peak performance.

6 servers26.8K tokens13% of context

Token Budget

26.8K used (13.4%)173.2K remaining
Neon MCP9.3K (4.6%)
PostgreSQL MCP4.1K (2.1%)
Redis MCP4.1K (2.1%)
MongoDB MCP3.1K (1.5%)
MySQL MCP3.1K (1.5%)
SQLite MCP3.1K (1.5%)

Moderate token usage. You will have good room for prompts but watch if adding more servers.

Config

Paste in ~/.claude.json

json
{
  "mcpServers": {
    "neon-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@neondatabase/mcp-server-neon"
      ],
      "env": {
        "NEON_API_KEY": "YOUR_NEON_API_KEY"
      }
    },
    "postgres-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-postgres",
        "postgresql://localhost/mydb"
      ],
      "env": {
        "POSTGRES_CONNECTION_STRING": "YOUR_POSTGRES_CONNECTION_STRING"
      }
    },
    "redis-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "redis-mcp"
      ],
      "env": {
        "REDIS_URL": "YOUR_REDIS_URL"
      }
    },
    "mongodb-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "mongodb-mcp"
      ],
      "env": {
        "MONGODB_URI": "YOUR_MONGODB_URI"
      }
    },
    "mysql-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "mysql-mcp"
      ],
      "env": {
        "MYSQL_HOST": "YOUR_MYSQL_HOST",
        "MYSQL_USER": "YOUR_MYSQL_USER",
        "MYSQL_PASSWORD": "YOUR_MYSQL_PASSWORD",
        "MYSQL_DATABASE": "YOUR_MYSQL_DATABASE"
      }
    },
    "sqlite-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "sqlite-mcp"
      ]
    }
  }
}

Included Servers

Recommended Skills

Skills that pair with the servers in this stack. Learn more

For PostgreSQL MCP

PostgreSQL Best Practicesbest-practices

PostgreSQL optimization guide covering query performance, connection management, indexing strategies, and schema design.

npx skillsadd supabase/agent-skills/supabase-postgres-best-practices
PostgreSQL Table Designbest-practices

PostgreSQL table design patterns including normalization, indexing, partitioning, and data type selection.

npx skillsadd wshobson/agents/postgresql-table-design

For Redis MCP

Redis DevelopmentOfficialbest-practices

Official Redis skill with 29 rules across 11 categories covering Redis Query Engine, vector search, semantic caching, and pub/sub.

npx skillsadd redis/agent-skills/redis-development