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"
}
}
}
}
}