postgres-mcp
The postgres-mcp server enables Claude Desktop to interact with PostgreSQL databases, offering both direct query capabilities and an advanced AI-driven SQL optimization pipeline.
Execute SQL queries: Run any SQL statement against the database; SELECT statements return JSON rows, while DML operations return the affected row count.
Inspect execution plans: Retrieve the
EXPLAINplan for a query, with an option forEXPLAIN ANALYZEto include real runtime statistics.List tables: Get a list of all tables within a specified schema (defaults to
public).Get table schema: Obtain detailed information about a table, including columns, types, nullability, default values, and indexes.
Identify slow queries: Fetch the top slowest queries from
pg_stat_statementsbased on mean execution time (configurable limit).Analyze and optimize queries (SQL-Surgeon pipeline): A multi-step AI pipeline that:
Runs
EXPLAIN (ANALYZE, COSTS, VERBOSE, BUFFERS, FORMAT JSON)on the query.Identifies bottlenecks (e.g., missing indexes, sequential scans) using Gemini 2.5 Pro.
Generates optimization advice and a complete optimized SQL script (including index DDL and rewritten query).
Self-reviews the generated advice with up to two retries if improvement is suggested.
Optionally benchmarks the optimized query by cloning the target table into a temporary schema, applying suggested DDL, and comparing execution plans.
Provides tools for executing SQL queries, obtaining query execution plans, and inspecting table schemas in a PostgreSQL database.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@postgres-mcpshow me the schema of the users table"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
postgres-mcp
An MCP server that connects Claude Desktop to a PostgreSQL database, exposing both direct query tools and an AI-powered query optimization pipeline built on SQL-Surgeon.
What it does
This project wraps two layers of capability into a single MCP server:
Layer 1 — Direct database tools: Claude can execute SQL, inspect execution plans, and query table schemas against a live PostgreSQL database.
Layer 2 — AI query optimization pipeline: Claude can invoke a multi-step LangGraph agent (SQL-Surgeon) that analyzes a slow query, identifies performance bottlenecks, generates optimization advice, self-reviews the advice for quality, and optionally benchmarks the result in a sandbox schema.
The MCP interface means Claude decides which tool to use based on the user's question — no manual tool selection needed.
Related MCP server: pg-mcp
Architecture
Claude Desktop
│
│ MCP protocol
▼
server.py ← tool registration + MCP entry point
│
tools.py ← tool logic
│
┌───┴──────────────────────────────────┐
│ │
db.py agent/graph.py
(Layer 1: direct tools) (Layer 2: LangGraph pipeline)
│ │
├── execute_query ┌───────────┼───────────┐
├── explain_query ▼ ▼ ▼
├── list_tables run_explain identify_issues generate_advice
├── get_table_schema │ │ │
└── get_slow_queries └───────────┴───────────┘
│
review_advice ←── retry loop (max 2x)
│
generate_benchmark_schema (optional)MCP Tools
Tool | Parameters | Description |
|
| Run any SQL; SELECT returns JSON rows, DML returns affected row count |
|
| Get query execution plan; |
|
| List all tables in a schema |
|
| List columns, types, nullability, defaults, and indexes |
|
| Return the slowest queries by mean execution time from |
|
| Run full SQL-Surgeon optimization pipeline; returns issues, advice, optimized SQL, and optional benchmark |
SQL-Surgeon Pipeline
analyze_query invokes a 5-node LangGraph graph:
run_explain — executes
EXPLAIN (ANALYZE, COSTS, VERBOSE, BUFFERS, FORMAT JSON)against the real databaseidentify_issues — sends the execution plan + DDL to Gemini 2.5 Pro; returns a JSON array of identified bottlenecks (missing indexes, sequential scans, row count misestimation, etc.)
generate_advice — generates specific optimization recommendations and a complete optimized SQL script (index DDL + rewritten query)
review_advice — a second LLM call acting as a senior DBA reviewer; returns
passorretrywith feedback; retries up to 2 timesgenerate_benchmark_schema (optional) — clones the target table into a temporary schema, applies the suggested DDL, and re-runs EXPLAIN to compare plans
Project Layout
src/postgres_mcp/
server.py # MCP entry point, tool registrations
tools.py # Tool logic; calls db.py and agent/
db.py # Connection helper (reads DATABASE_URL)
db_client.py # DBClient used by the agent pipeline
agent/
graph.py # LangGraph graph definition
nodes.py # 5 node functions
state.py # AgentState TypedDict
prompts.py # System prompts for each LLM node
tests/
test_tools.py # Unit tests with mocked DB connections
examples/
claude_desktop_config.jsonSetup
Prerequisites
Python 3.10+
uv —
brew install uvA running PostgreSQL instance
A Google API key (Gemini 2.5 Pro) for
analyze_query
Install
git clone https://github.com/RachelHuangZW/postgres-mcp
cd postgres-mcp
uv syncConfigure environment
Create .env in the project root:
DATABASE_URL=postgresql://user:password@localhost:5432/dbname
GOOGLE_API_KEY=your-google-api-keyRegister with Claude Desktop
Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"postgres-mcp": {
"command": "uv",
"args": [
"run",
"--directory", "/path/to/postgres-mcp",
"--env-file", "/path/to/postgres-mcp/.env",
"python", "-m", "postgres_mcp.server"
]
}
}
}Fully quit and reopen Claude Desktop after saving.
Verify
Open Claude Desktop and ask:
"What MCP tools do you have available?"
Claude should list all six tools.
Development
uv sync --group dev
uv run pytestTests use mocked database connections and do not require a live PostgreSQL instance.
Tech Stack
MCP framework: FastMCP
Agent framework: LangGraph
LLM: Gemini 2.5 Pro via
langchain-google-genaiDatabase: PostgreSQL via
psycopg2Package manager: uv
How this was built
This project was built with Claude Code as a pair-programming partner. I designed the architecture (two-layer tool exposure, separation of db.py vs db_client.py), made all technical decisions (MCP framework choice, LangGraph integration approach, security boundaries), and iterated on implementation with AI assistance. Every design decision documented in this README reflects my own thinking about MCP server design and enterprise database tool exposure.
Security Note
execute_query runs arbitrary SQL. Use a read-only database role in production or restrict access to trusted users only.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/RachelHuangZW/postgres-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server