Neon MCP Server

Author:@neondatabase-labs
View on GitHub

Overview

What is the Neon MCP Server?

It is a server for the Model Context Protocol (MCP) that connects to the Neon Management API and databases. It enables management and operations using natural language commands.

How do you use it?

Install it via Smithery or run it locally with your Neon API key. After setup, you can issue commands through Claude Desktop to manage your databases.

What are its key features?

It supports commands to create, delete, and describe Neon projects and branches. You can run SQL commands and manage database migrations safely. It integrates with Claude Desktop for natural language processing.

What are the main use cases?

Creating and managing Postgres databases through natural language. Running schema migrations with LLM assistance. Listing and describing existing projects and their data.

Frequently Asked Questions

What is the Model Context Protocol (MCP)? It is a standard protocol for handling context between large language models and external systems.

Do I need an API key? Yes, you require a Neon API key, which you can generate from the Neon console.

Is there a usage guide? Yes, guides are available for different clients such as Claude Desktop and Cline.

Configuration

{
  "mcpServers": {
    "neon": {
      "command": "npx",
      "args": [
        "-y",
        "@neondatabase/mcp-server-neon",
        "start",
        "{NEON_API_KEY}"
      ]
    }
  }
}