drio
Open app

Neon MCP Server

Source

Lightweight MCP server to give your Cursor Agent access to the Neon API

Catalog onlyCatalog onlySTDIO

Overview

Neon MCP Server is a lightweight Model Control Protocol (MCP) server that provides access to the Neon API, deployed on Cloudflare Workers.

To use the Neon MCP Server, run the automated setup script to clone the worker and deploy it to your Cloudflare account, then upload your Neon API key to your worker secrets.

  • Lightweight and easy to deploy on Cloudflare Workers - Interfaces with the Neon REST API - Automated setup script for quick deployment
  1. Integrating with the Neon API for data management.
  2. Developing applications that require real-time data access through MCP.
  3. Simplifying the deployment of serverless applications using Cloudflare Workers.

Add to your AI client

Use these steps to connect Neon MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "neon-mcp-amxv": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-neon-mcp-amxv"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "neon-mcp-amxv": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-neon-mcp-amxv"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "neon-mcp-amxv": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-neon-mcp-amxv"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "neon-mcp-amxv": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-neon-mcp-amxv"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "neon-mcp-amxv": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-neon-mcp-amxv"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "neon-mcp-amxv": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-neon-mcp-amxv"
      ]
    }
  }
}

FAQ

Is Neon MCP Server free to use?

Yes! Neon MCP Server is free to use as it is open-source.

What programming language is used?

The server is developed using TypeScript.

How do I deploy changes?

You can deploy changes by running the command `bun run deploy` after making your updates.