Add Neon to your coding agent
Three new Neon CLI commands set up Neon in coding agents like Cursor and Claude Code, without manual config steps. Each runs an interactive walkthrough, or takes flags so you can script it.
neon mcp
Installs the Neon MCP Server into your agents by writing their MCP config for you. It points each agent at the hosted server, sets up authentication, and can limit which tools the agent sees. By default, it mints a Neon API key and writes it into the config. Alternativevly, pass --oauth to skip API-key creation and have the agent sign in to Neon on first use instead.
For example, install into Cursor and Claude Code with read-only tools:
neon mcp --agent cursor --agent claude-code --read-onlyneon skills
Installs Neon's agent skills so tools like Cursor and Claude Code know how to work with Neon's Postgres, AI Gateway, Object Storage, and Functions. Skills install into the current directory by default, so they travel with the repository, and neon skills update refreshes them to their latest versions later.
For example, install the core Postgres and AI Gateway skills into Cursor:
neon skills -s neon -s neon-ai-gateway --agent cursorneon plugins
Installs the neon-postgres plugin into agents that support plugin marketplaces, such as Claude Code, Cursor, and Codex. The plugin bundles Neon's agent skills and MCP access in one package, so a single install gives the agent both.
For example, install into Claude Code without prompts:
neon plugins --agent claude-code -yThe Neon CLI has seen many new additions over the past several weeks. For a tour of other recent additions, from the branch-first workflow to built-in Postgres diagnostics, see Just landed in the Neon CLI.
Have an idea for the CLI or agent tools?
We'd love to hear it. Let us know via the Feedback form in the Neon Console or our feedback channel on Discord.
Postgres minor version rollout history now in the docs
Our Postgres version support policy docs now include a rollout history for recent minor releases. For each release, you can see the date PostgreSQL published it, the versions it included, when it became available on Neon, and how long that took. For example:
| Postgres release date | Versions in the release | First available on Neon | Time to availability |
|---|---|---|---|
| 2026-08-13 | 18.6, 17.11, 16.15, 15.19, 14.24 | 2026-08-18 | 5 days |
Each version in the table links to its PostgreSQL release notes, so you can see exactly which bug fixes and CVE patches that minor release contains.
info
Run SELECT version(); to see which version you're on. Minor version updates are rolled out the next time your compute restarts. To update now, restart your compute yourself, or wait for your compute's next scheduled update. See Updates for details.
Get started building on the Neon backend
Two new guides show what you can build with the Neon backend, where Object Storage, Functions, and the AI Gateway sit next to your database:
- Build an image processing API with Neon Functions, Sharp, and Neon AI Gateway: resize, crop, optimize, analyze, and AI-caption images on Neon Functions, then store the results in your branch's Object Storage bucket.
- Clean up orphaned S3 objects with Neon Object Storage branching: run a real storage-cleanup job on a branch first, where buckets branch with your database, then promote it to production once you've verified it.

Object Storage, Functions, and AI Gateway are in beta in AWS US East (Ohio) and branch with your Postgres database, so your whole stack forks together.
Connect fx to Neon's MCP server
fx is a small, fast coding agent and CLI from Vercel Labs, built to embed in larger systems. You can now connect it to Neon's remote MCP server, using either OAuth or a Neon API key, so the agent can work with your Neon projects directly.
For example, add the server with OAuth:
npx add-mcp https://mcp.neon.tech/mcp -a fxThen authorize from the fx shell:
/mcp auth neon --openFor the API key option and more detail, see Connect MCP clients to Neon.
Fixes & improvements
Neon MCP server updates
- The
inspect_databasetool now includes astalled-queriescheck. It returns a compute-wide snapshot of every client backend and parallel worker whose query group has been running longer than 30 seconds, so an agent can see what's blocking a database right now, across every database on the compute and from the moment a query stalls. - Stalled queries are now ranked with the oldest query group first, so the longest-running blocker surfaces at the top of the results.
New NAT gateway IPs and Private Networking endpoints in us-east-2
- Added NAT gateway IP addresses and Private Networking VPC endpoint service names in AWS US East (Ohio) (
us-east-2). If you allowlist Neon's outbound IPs, add the new addresses from the Regions page, or outbound connections can fail intermittently. If you use Private Networking in this region, add the new service names from the Private Networking guide.
