--- title: Agent Skills, Data API provisioning, and faster docs --- ## Give your AI assistant Neon expertise Install our [Agent Skills](https://github.com/neondatabase/agent-skills) to teach your AI coding assistant about Neon best practices, connection methods, ORM setup, and branching workflows. Works across Claude Code, Cursor, VS Code, and other AI tools. ```bash npx skills add neondatabase/agent-skills ``` Agent Skills work alongside the [Neon MCP Server](/docs/ai/connect-mcp-clients-to-neon). The skill provides reasoning and guidance while the MCP server provides capabilities like creating branches and running queries. Learn more in our [blog post on Agent Skills](https://neon.com/blog/agent-skills-in-2026). ### MCP Server provisions Data API The [Neon MCP Server](/docs/ai/neon-mcp-server) now supports provisioning the [Neon Data API](/docs/data-api/overview) for your databases with optional JWT authentication. Ask your AI assistant: ```bash Can you provision Data API access for my database with Neon Auth authentication? ``` The `provision_neon_data_api` tool enables HTTP-based access to your Neon databases and supports multiple authentication options: unauthenticated access, Neon Auth, or external providers (Clerk, Auth0, Stytch, and others). This makes it easier to set up [Data API](/docs/data-api/overview) access directly from your AI assistant without switching to the Neon Console. To get started with the Neon MCP Server, run `npx neonctl@latest init` to install and configure it automatically. Learn more in [Neon MCP Server](/docs/ai/neon-mcp-server). ## Postgres protocol 3.2 support Neon now supports [Postgres 18's protocol 3.2](https://www.postgresql.org/docs/current/protocol-overview.html#PROTOCOL-VERSIONS) with enhanced cancellation keys. This protocol support applies retroactively to all Postgres versions (14, 15, 16, 17, and 18). Clients that support the new protocol will automatically benefit from these improvements without any configuration changes needed. ## Get started with Neon faster We've added quick actions to the [Neon docs](/docs/introduction). Everything you need to go from docs to working code is now just a click away. Quick actions available on every doc page: - Copy page as markdown - Open in ChatGPT or Claude - Copy `neon init` command for MCP Server setup - Connect MCP on Cursor or VS Code Find the prompts on the [documentation homepage](/docs/introduction#quickstart-prompts) or try them here:
**Consumption API** - We increased the burst limit for our [Consumption API](/docs/guides/consumption-metrics) endpoints. The higher limit allows for temporary spikes in request volume, making it easier to handle periods of high activity without hitting rate limits. _The Consumption API lets Neon Scale and Enterprise plan users track resource usage (compute time, storage, data transfer) across projects programmatically._
**Import Data Assistant** - Fixed an issue where the [Import Data Assistant](/docs/import/import-data-assistant) would get stuck after creating a new project, preventing users from completing their database import. _The Import Data Assistant, available from the Neon Console, helps you move an existing Postgres database to Neon using just a connection string._
**Neon VS Code Extension** - Added support for configuring the Neon MCP Server in read-only mode. You can now restrict the MCP Server to read-only tools and read-only SQL transactions directly from the VS Code extension settings. See [Neon VS Code Extension](/docs/local/vscode-extension).