DBs in the Free plan can now autoscale up to 2 CPU. More performance without manual resizes
AI

What’s New With MCP at Neon

A round-up of recent features

The Neon MCP Server implements the specification introduced by Anthropic to expose a set of commands that wrap the Neon API (but also add some new workflows not exposed in the API). This gives AI agents an easy way to perform tasks like provisioning databases, inspecting query plans, or managing projects.

If you haven’t used it before, the Neon MCP Server is available as both a remote server and a local version you can run on your machine or inside a tool. Since our initial launch way back in December 2024, we’ve been quietly shipping improvements, making the server faster, more flexible, and easier to use.

The Neon MCP Server: Recent Improvements 

Reference catalog

We launched a reference page for the Neon MCP Server at mcp.neon.tech, so you can get a clear overview of what the MCP Server can do. It includes a reference catalog of every supported action  and what each command returns.

Check it out at https://mcp.neon.tech/

One-click install in Cursor

We built a one-click “Add to Cursor” button for our docs and GitHub repo. Once installed, Cursor will route your commands through the Neon MCP Server, giving you a real-time interface to your database from the same place you write code. If you’re building workflows inside Cursor, this is the fastest way to connect.

Post image

Cursor can now connect to Neon without mcp-remote

The latest Cursor versions have native support for connecting directly to remote MCP servers over SSE, including Neon’s hosted MCP at mcp.neon.tech. This means you no longer need to install or run the mcp-remote bridge – Cursor now speaks the protocol directly. Great news.

API key authentication

We also added support for Neon API keys in the remote MCP server. This makes it easier to connect agents, scripts, and CI jobs without needing OAuth – just use your personal or organization-level API key to authenticate.

{
  "mcpServers": {
    "Neon": {
      "url": "https://mcp.neon.tech/mcp",
      "headers": {
        "Authorization": "Bearer <$NEON_API_KEY>"
      }
    }
  }
}

Streamable HTTP support

In addition to Server-Sent Events (SSE), the Neon MCP Server now supports streamable HTTP. This makes it easier to consume streamed responses in environments where SSE doesn’t work well. 

If you’re using the hosted MCP Server, you’ll automatically get support for HTTP streaming with no changes needed, but you have to point to `mcp.neon.tech/mcp` instead of `mcp.neon.tech/sse`. Just make sure your client can handle streamed responses.

{
  "mcpServers": {
    "Neon": {
      "command": "npx",
      "args": ["-y", "mcp-remote@latest", "https://mcp.neon.tech/mcp"]
    }
  }
}

New actions for performance and visibility

We keep adding actions to the list, inspired by the requirements of our partners. The latest round of actions helps teams  inspect resources, diagnose slow queries, and tune performance. 

  • list_branch_computes: you can use this action to inspect the compute resources attached to your database branches. list_branch_computes returns details like compute size, autoscaling settings, and status. 
  • list_slow_queries: this surfaces the slowest queries in your database, to help agents or humans spot performance bottlenecks quickly. 
  • explain_sql_statement: get a full execution plan for any query
  • prepare_query_tuning: receive optimization suggestions (e.g. index changes)
  • complete_query_tuning: apply or discard them based on your tests

Quality-of-life improvements

In addition to the new actions, we’ve shipped a few smaller updates that improve how the MCP Server works behind the scenes

  • Smarter list_projects. We’ve made list_projects more usable by adding a default limit of 10 projects and including helpful hints in the response. You’ll get cleaner output, especially when working in organizations with many active projects.
  • More informative auth dialogs. When an agent or tool initiates authentication via the remote MCP Server, you’ll now see a clear dialog showing the client’s name, website, and redirect URIs before approving access. Your approvals are saved for future use, so you only have to approve once per tool.
  • Organization details in project actions. The list_projects and create_project actions now return Neon organization details alongside project metadata, making it easier to manage multi-org setups and route requests appropriately.

Try it out 

The Neon MCP Server is ready for agents, tools, and humans alike. Set it up if you haven’t already and share what you’re building by mentioning us on X.