Neon MCP
UpNeon is serverless PostgreSQL with a Git-like database branching model, and its official MCP server lets agents create projects and branches, run SQL, and migrate via prepare/complete tools: changes land on a test branch first, then the main one. The remote endpoint at mcp.neon.tech/mcp uses OAuth or an API key; Neon warns the tools can perform destructive operations.
Why this server
- prepare_database_migration tests a migration on a separate branch before touching the main one
- create_branch clones the database state in seconds — no manual backup needed
- list_slow_queries and explain_sql_statement find bottlenecks without opening the Neon console
- One-minute OAuth setup at mcp.neon.tech/mcp — no CLI install or local server needed
Usage examples
Prompt: Add a discount_percent column to the orders table without touching the production database directly
Result: The agent called prepare_database_migration — Neon applied the change on a test branch, and only after review did the agent confirm it via complete_database_migration.
Prompt: Find today's slowest queries and explain why they're slow
Result: list_slow_queries returned the top queries by execution time, and explain_sql_statement broke down the first one's plan, pointing to a missing index.
Health
1 reports in the last 30 days · Last report: 25 Jul 2026
Reports by day (30 days)
| date | works | partial | broken |
|---|---|---|---|
| 2026-07-25 | 1 | 0 | 0 |
Reviews
No reviews yet.