Database Administrator Stack
Manage, optimize, and monitor multiple database engines from a single AI-powered interface for peak performance.
Token Budget
Moderate token usage. You will have good room for prompts but watch if adding more servers.
Config
Paste in ~/.claude.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
PostgreSQL MCP
Anthropic
Query and interact with PostgreSQL databases, inspect schemas, and run SQL directly from your AI editor.
Manages your primary relational database with query optimization, schema migrations, and performance tuning.
MongoDB MCP
Community
Query MongoDB databases, inspect collections, and analyze documents directly from your AI editor.
Administers document collections, indexes, and aggregation pipelines for your NoSQL workloads.
MySQL MCP
Community
Execute SQL queries against MySQL databases. Inspect schemas, run queries, and analyze data from your AI editor.
Maintains legacy and enterprise MySQL instances that power critical business applications.
Redis MCP
Community
Interact with Redis databases. Get, set, and manage keys, run commands, and monitor your Redis instances from your AI editor.
Configures caching layers, session stores, and pub/sub channels for low-latency data access.
SQLite MCP
Community
Query and manage SQLite databases. Create tables, run queries, and inspect data directly from your AI editor.
Handles embedded databases for local development, testing, and lightweight application storage.
Neon MCP
Neon
Manage Neon serverless Postgres projects, branches, databases, and run SQL queries and migrations directly from your AI editor.
Provisions serverless Postgres branches for safe schema testing without touching production data.
Recommended Skills
Skills that pair with the servers in this stack. Learn more
For PostgreSQL MCP
PostgreSQL optimization guide covering query performance, connection management, indexing strategies, and schema design.
npx skillsadd supabase/agent-skills/supabase-postgres-best-practicesPostgreSQL table design patterns including normalization, indexing, partitioning, and data type selection.
npx skillsadd wshobson/agents/postgresql-table-designFor Redis MCP
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