Home/Servers/Neon MCP Server

Neon MCP Server

by Neon ยท โญ 987 stars ยท updated 1 months ago

Manage Neon serverless Postgres databases. Create branches, run queries, manage connection strings, and control your Neon databases through your AI assistant.

82
Very Good

Quality Score Breakdown

maintenance84/100
community80/100
documentation83/100
compatibility81/100

Use Cases

  • โœ“manage Neon databases
  • โœ“create branches
  • โœ“run queries
  • โœ“database management

โšก One-Click Install Configs

Copy the config below and paste it into your AI client's config file.

๐Ÿค– Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "neon": {
      "command": "npx",
      "args": [
        "-y",
        "@neondatabase/mcp-server-neon"
      ],
      "env": {
        "NEON_API_KEY": "YOUR_NEON_API_KEY"
      }
    }
  }
}
โšก Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "neon": {
      "command": "npx",
      "args": [
        "-y",
        "@neondatabase/mcp-server-neon"
      ],
      "env": {
        "NEON_API_KEY": "YOUR_NEON_API_KEY"
      }
    }
  }
}
๐Ÿ’™ VS Code
.vscode/mcp.json
{
  "mcp": {
    "servers": {
      "neon": {
        "command": "npx",
        "args": [
          "-y",
          "@neondatabase/mcp-server-neon"
        ],
        "env": {
          "NEON_API_KEY": "YOUR_NEON_API_KEY"
        }
      }
    }
  }
}
โ† Back to all servers