Fire in da houseTop Tip:Paying $100+ per month for Perplexity, MidJourney, Runway, ChatGPT and other tools is crazy - get all your AI tools in one site starting at $15 per month with Galaxy AI Fire in da houseCheck it out free

neon-mcp

MCP.Pizza Chef: zueai

neon-mcp is a lightweight MCP server deployed on Cloudflare Workers that enables agents like Cursor to interface seamlessly with the Neon REST API. It facilitates secure, real-time interaction with Neon services by exposing structured API access through the Model Control Protocol. Designed for easy deployment and development, it supports API key management and is extendable with additional tools as needed.

Use This MCP server To

Enable Cursor Agent to interact with Neon API via MCP Deploy MCP server on Cloudflare Workers for Neon API access Manage Neon API keys securely within MCP server environment Extend MCP server with custom tools for Neon API workflows Facilitate real-time Neon API data retrieval for AI agents

README

neon-mcp

This is a lightweight Model Control Protocol (MCP) server bootstrapped with create-mcp and deployed on Cloudflare Workers.

This MCP server allows agents (such as Cursor) to interface with the Neon REST API.

It's still under development, I will be adding more tools as I find myself needing them.

Installation

  1. Run the automated install script to clone this MCP server and deploy it to your Cloudflare account:
bun create mcp --clone https://github.com/zueai/neon-mcp
  1. Open Cursor Settings -> MCP -> Add new MCP server and paste the command that was copied to your clipboard.

  2. Upload your Neon API key to your worker secrets:

bunx wrangler secret put NEON_API_KEY

Local Development

Add your Neon API key to the .dev.vars file:

NEON_API_KEY=<your-neon-api-key>

Deploy Changes

  1. Run the deploy script:
bun run deploy
  1. Reload your Cursor window to use the updated tools.

Available Tools

See src/index.ts for the current list of tools.

Learn More

neon-mcp FAQ

How do I deploy neon-mcp on Cloudflare Workers?
Use the automated install script with bun create mcp to clone and deploy neon-mcp to your Cloudflare account.
How do I configure the Neon API key for neon-mcp?
Upload your Neon API key to your worker secrets using bunx wrangler secret put NEON_API_KEY or add it to the .dev.vars file for local development.
Can I add more tools to neon-mcp?
Yes, neon-mcp is designed to be extendable; you can add more tools as needed to support additional Neon API features.
What agents can use neon-mcp?
Agents like Cursor can use neon-mcp to interface with the Neon API via MCP.
Is neon-mcp suitable for production use?
neon-mcp is lightweight and under active development; evaluate it for your production needs accordingly.
Does neon-mcp support secure API key management?
Yes, it supports secure storage of Neon API keys via Cloudflare worker secrets.
How do I update or deploy changes to neon-mcp?
Run the provided deploy script to push updates to your Cloudflare Workers deployment.