pgops-mcp
Enables AI agents to safely and audibly operate PostgreSQL databases and their Docker environments, offering schema inspection, guarded queries, migrations, performance diagnosis, and container management tools.
README
pgops-mcp
A production-grade MCP server that gives AI agents safe, audited, expert-level control over a real PostgreSQL database and the Docker stack around it — no shell commands, no Python scripts, just tools.
Why
Existing Postgres MCP servers are thin query wrappers: introspect + SELECT. None handle
migrations with lock-impact analysis, none diagnose performance from EXPLAIN +
pg_stat_statements, none understand the containerized environment the database lives in.
Agents operating databases today are flying blind and unsafe.
pgops-mcp is the operations brain: schema intelligence → guarded queries → migration
engine → performance diagnosis → environment awareness, with a safety architecture that
makes every action classifiable, confirmable, and auditable.
Tool surface (v0.1)
| Group | Tools |
|---|---|
| Schema | schema.inspect |
| Queries | query.read, query.write (guarded), query.explain (parsed plan + verdict) |
| Performance | index.advise, db.health |
| Migrations | migration.plan (dry-run + lock analysis), migration.apply, migration.history |
| Environment | env.topology, env.correlate, container.logs, container.stats |
| Gated | container.restart, container.exec |
* Not registered at all unless the server runs with --approval-mode, and even then
each call needs a confirmation token. container.exec additionally enforces a read-only
diagnostic command allowlist — it does not offer a shell. The Docker socket is
root-equivalent on the host, so the default is read-only access.
Safety model (the core differentiator)
- Separate read-only / read-write connection roles; tools bind to the right role
- Statement classification before execution — unbounded
DELETE/UPDATEblocked - Destructive actions require explicit confirmation tokens
- Every executed statement lands in an append-only audit log with timing and verdict
- Runaway-query cancellation with timeout tiers
MCP surface
| Primitive | What's here |
|---|---|
| Tools | 13 — schema, query, explain, advise, migrate, environment |
| Resources | pgops://schema, schema/summary, schema/{table}, health, migrations, audit/recent, config |
| Prompts | diagnose-slow-query, plan-safe-migration, incident-triage, review-index-health, explain-safety-model |
| Elicitation | Dangerous actions ask the user directly, not via the agent; confirmation tokens are the fallback |
| Progress / logging | Best-effort notifications during long operations |
Remote access & agent tokens
stdio needs no auth — the server is a subprocess your client spawns, with no open port. HTTP does, so it refuses to start without a key:
pgops-mcp keygen # RS256 keypair
pgops-mcp issue-token --subject my-agent # read-only by default
pgops-mcp issue-token --subject deploy-bot --scope pgops:read --scope pgops:write
pgops-mcp scopes # which scope each tool needs
pgops-mcp --transport http --public-key ~/.pgops/keys/pgops_public.pem
The server holds only the public key, so it can verify tokens but never mint them.
Scopes (pgops:read / pgops:write / pgops:admin) map to the same danger tiers as the
guardrails, and a tool with no scope entry requires admin — deny by default. Binds
loopback unless you say otherwise.
Quickstart
uv sync
# point at your local Postgres in Docker:
export PGOPS_DSN="postgresql://user:pass@localhost:5432/mydb"
uv run pgops-mcp # stdio transport for Claude Desktop / Cursor / VS Code
Add to Claude Desktop:
{
"mcpServers": {
"pgops": {
"command": "uv",
"args": ["run", "--directory", "/path/to/pgops-mcp", "pgops-mcp"]
}
}
}
Docs
docs/PRD.md— what & why, goals, non-goalsdocs/SPEC.md— phased technical spec with hard gatesdocs/ARCHITECTURE.md— system design + trade-offsdocs/TOOLS.md— full tool catalog with schemas & examplesdocs/adr/— architecture decision recordsdocs/flow.md— living progress logdocs/interview_prep.md— growing interview Q&A
Status
Phases 0–6b complete (319 tests, every guardrail, verdict and lock-impact rule proven against real Postgres via testcontainers — no mocks — plus end-to-end suites driving the server as a real MCP subprocess over stdio and as an authenticated HTTP server).
| Phase | State | Tools |
|---|---|---|
| 0 · Bootstrap | ✅ | seeded dev stack (1.2M-row orders), CI, lint/type gates |
| 1 · Connection core + read path | ✅ | schema.inspect, query.read, db.health |
| 2 · Write path + safety | ✅ | query.write, guardrails, confirmation tokens, audit log |
| 3 · Performance brain | ✅ | query.explain (plan verdicts), index.advise |
| 4 · Migration engine | ✅ | migration.plan (lock analysis + dry run), apply, history |
| 5 · Docker layer | ✅ | env.topology, env.correlate, container.logs/stats/restart/exec |
| 6a · MCP completeness | ✅ | resources, prompts, elicitation, progress |
| 6b · Remote + auth | ✅ | HTTP transport, JWT, scoped agent tokens, keygen CLI |
| 6c · Packaging | next | PyPI, Smithery, MCP registry |
migration.rollback is deliberately still open — see docs/TOOLS.md.
Sample of what migration.plan returns for a type change on the 1.2M-row orders:
ALTER TABLE "orders" ALTER COLUMN "total_cents" TYPE bigint
op=table_rewrite risk=high estimate=4800ms confidence=medium
why: rewrites every row and rebuilds every index, holding AccessExclusiveLock
SAFER: add a new column of the target type, backfill in batches, sync with a
trigger, swap the names, then drop the old column
Quickstart the dev database (host port 5433, to avoid colliding with a local Postgres on 5432):
docker compose up -d
export PGOPS_DSN="postgresql://pgops:pgops_dev@localhost:5433/pgops_demo"
uv run pgops-mcp --selfcheck
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.