The Neon Claude Code plugin is available on the official Claude plugins marketplace. It adds Neon-specific Skills and API access to Claude Code, Anthropic's AI development environment, bundling guided Skills plus an MCP (Model Context Protocol) server integration.

Overview

Claude Skills are Markdown-based workflows that tell Claude how to complete specific tasks (like setting up a database connection, editing a file, or running a script). The Neon plugin packages several of these Skills into a reusable bundle, so Claude Code can interact directly with Neon Postgres.

Once installed, the plugin gives Claude the ability to:

  • Create and manage Neon projects and databases
  • Connect frameworks like Drizzle ORM
  • Configure serverless Postgres connections
  • Reference Neon documentation and best practices in context

What's included

The plugin contains:

  • The neon-postgres skill for guided Neon workflows, covering getting started, connections, Neon Auth, the Data API, platform SDKs, and developer tools
  • An MCP server integration that connects Claude to Neon's APIs

How it works

Each Skill is a Markdown file with a description and a step-by-step workflow. When you ask Claude to perform a task (for example, "Integrate Neon with Drizzle"), it checks the available Skill descriptions, finds a match, and loads the full instructions to complete the task.

The plugin's MCP server integration lets Claude interact with Neon's live API endpoints. That means Claude can:

  • Query Neon for project information
  • Create or delete branches and databases
  • Validate connection strings
  • Run SQL queries and migrations

Install the plugin in Claude Code

  1. Install the Neon plugin:

    From your terminal:

    claude plugin install neon@claude-plugins-official

    Or from within a Claude Code session:

    /plugin install neon@claude-plugins-official
  2. Verify the installation: Ask Claude Code:

    which skills do you have access to?

    You should see the neon-postgres skill listed.

  3. Start using the Skills: Use natural language prompts like:

    "Use the neon-drizzle Skill to set up Drizzle ORM with Neon."

Claude will automatically select and execute the relevant workflow.

Use skills outside Claude Code

The Agent Skills repository provides skills for other AI tools as well. You can install them with:

npx skills add neondatabase/agent-skills -s neon-postgres

See Agent Skills for all installation options.

Learn more

If you run into issues, visit our Discord or open an issue in the Agent Skills repository.