postgres-mcp
A self-hostable PostgreSQL MCP server for exploring database schemas and running guarded read/write queries with selectable access modes (readonly, readwrite, admin), plus a dry-run confirm workflow for safety.
README
postgres-mcp
A fast, self-hostable PostgreSQL MCP server. Explore your database (schemas, tables, columns, constraints, relationships, indexes, triggers, functions/procedures, views, enums, stats) and run guarded read or write queries — with a selectable access mode so the same server can be locked to read-only or opened up for edits.
Built with Python + uv, FastMCP and psycopg3.
Runs equally well via uvx or Docker. Works with any PostgreSQL: local, Neon,
Supabase, Cloud SQL, RDS, DigitalOcean, …
Naming note: this is an independent project. There is a separate, unrelated PyPI package also called
postgres-mcp(Crystal DBA's "Postgres MCP Pro"). If you publish, pick a unique distribution name.
Quick start with Docker
# 1. Build the image
docker build -t postgres-mcp .
# 2. Add it to your MCP client (.mcp.json) — read-only by default:
{
"mcpServers": {
"postgres": {
"command": "docker",
"args": ["run", "-i", "--rm", "-e", "DATABASE_URI", "-e", "PG_MCP_ACCESS_MODE", "postgres-mcp"],
"env": {
"DATABASE_URI": "postgresql://readonly_user:pass@host:5432/db",
"PG_MCP_ACCESS_MODE": "readonly"
}
}
}
}
The server speaks MCP over stdio, so the container must be run with -i.
DATABASE_URI and PG_MCP_ACCESS_MODE are listed both in args (to forward the
names into the container) and in env (their values), so secrets stay out of
the image.
Try it instantly with a seeded demo database
docker compose --profile demo up -d demo-db # Postgres on localhost:55432, pre-seeded
docker build -t postgres-mcp .
# Point DATABASE_URI at: postgresql://readonly_user:readonly_pw@host.docker.internal:55432/appdb
Run without Docker (uv)
uv sync
DATABASE_URI=postgresql://readonly_user:pass@host:5432/db \
PG_MCP_ACCESS_MODE=readonly \
uv run postgres-mcp
Or straight from a Git repo, no clone needed:
{
"mcpServers": {
"postgres": {
"command": "uvx",
"args": ["--from", "git+https://github.com/<you>/postgres-mcp", "postgres-mcp"],
"env": { "DATABASE_URI": "postgresql://readonly_user:pass@host:5432/db" }
}
}
}
Access modes
Set with PG_MCP_ACCESS_MODE. Each mode adds tools; higher modes include the
lower ones. Choose the least privilege you need.
| Mode | Read tools | execute_dml (INSERT/UPDATE/DELETE/MERGE) |
execute_ddl (CREATE/ALTER/DROP/…) |
DB session |
|---|---|---|---|---|
readonly (default) |
✅ | — | — | forced read only |
readwrite |
✅ | ✅ | — | normal |
admin |
✅ | ✅ | ✅ | normal |
The access mode is enforced two ways: write tools are not even registered in lower modes, and in
readonlythe database session itself rejects writes. For real safety, also connect with a DB role scoped to what you need.
Tools
Read (all modes)
| Tool | Purpose |
|---|---|
server_info |
Current access mode + safety config |
list_schemas |
User schemas |
list_tables |
Tables/views/matviews with size & row estimate |
describe_table |
Columns, types, defaults, identity/generated, PK |
list_constraints |
PK / unique / FK / check / exclusion |
get_relations |
Incoming & outgoing foreign keys |
list_indexes |
Index definitions |
list_triggers |
Trigger definitions (schema or one table) |
list_functions |
Functions & procedures (signatures) |
get_function_definition |
Full source of a function/procedure |
list_views |
View / materialized-view definitions |
list_enums |
Enum types and labels |
table_stats |
Sizes, live/dead rows, vacuum/scan stats |
run_select |
Guarded read-only query runner |
Write (mode-gated)
| Tool | Mode | Purpose |
|---|---|---|
execute_dml |
readwrite, admin |
INSERT / UPDATE / DELETE / MERGE |
execute_ddl |
admin |
CREATE / ALTER / DROP / TRUNCATE / COMMENT / GRANT / REVOKE / REINDEX |
How writes stay safe — the dry-run + confirm workflow
Every write tool defaults to confirm=false, which performs a dry run:
- Understand the data flow first. The model is instructed to inspect
describe_table,get_relations(cascading FKs) andlist_triggersbefore changing anything, so cascade/side-effects are known up front. - Dry run. With
confirm=false, the statement runs inside a transaction that is rolled back. Because Postgres has transactional DDL, this both validates the statement and returns the exactaffected_rows— without persisting anything. - Review. If
affected_rowsis larger than expected, fix theWHEREclause and dry-run again.UPDATE/DELETEwithout aWHEREis refused unlessallow_full_table_write=true. - Commit. Re-run with
confirm=trueto apply the change.
On top of this, your MCP client (Claude Code, etc.) prompts the human to approve each tool call — so a real person is always in the loop before a commit.
Statements that can't run in a transaction (
CREATE INDEX CONCURRENTLY,CREATE/DROP DATABASE,VACUUM) can't be dry-run;execute_ddltells you to re-run withconfirm=true, non_transactional=true(no rollback safety).
Configuration
| Env var | Default | Meaning |
|---|---|---|
DATABASE_URI |
— | postgresql://user:pass@host:5432/db (also DATABASE_URL) |
PG_MCP_ACCESS_MODE |
readonly |
readonly / readwrite / admin |
PG_MCP_STATEMENT_TIMEOUT_MS |
15000 |
Per-statement timeout |
PG_MCP_MAX_ROWS |
1000 |
Hard cap on returned rows |
PG_MCP_POOL_MAX |
4 |
Max pooled connections |
TLS works out of the box (e.g. Neon: append ?sslmode=require to the URI).
Recommended DB roles
Read-only:
CREATE ROLE readonly_user LOGIN PASSWORD 'change_me';
GRANT CONNECT ON DATABASE mydb TO readonly_user;
GRANT USAGE ON SCHEMA public TO readonly_user;
GRANT SELECT ON ALL TABLES IN SCHEMA public TO readonly_user;
ALTER DEFAULT PRIVILEGES IN SCHEMA public GRANT SELECT ON TABLES TO readonly_user;
ALTER ROLE readonly_user SET statement_timeout = '15s';
Read-write (add only what you need):
GRANT INSERT, UPDATE, DELETE ON ALL TABLES IN SCHEMA public TO app_user;
GRANT USAGE, SELECT ON ALL SEQUENCES IN SCHEMA public TO app_user;
Add your own tools
Drop a function in src/postgres_mcp/server.py:
@mcp.tool()
def biggest_tables(schema: str = "public", top: int = 10) -> list[dict]:
"""Largest tables in a schema by total size."""
return db.query(
"""SELECT c.relname AS name,
pg_size_pretty(pg_total_relation_size(c.oid)) AS size
FROM pg_class c JOIN pg_namespace n ON n.oid = c.relnamespace
WHERE n.nspname = %s AND c.relkind IN ('r','p','m')
ORDER BY pg_total_relation_size(c.oid) DESC LIMIT %s""",
(schema, top),
)
Roadmap
- ☐ Cloud SQL connectivity guide (Cloud SQL Auth Proxy + gcloud/service account)
- ☐ Provider notes: DigitalOcean Managed Databases, AWS RDS/Aurora
- ☐ Optional published images (GHCR) and PyPI release
License
MIT
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。