Skip to content

Commit 5487168

Browse files
committed
feat: add Neon MCP server definitions (remote + local)
- com.neon-mcp-http: Remote HTTP with OAuth at mcp.neon.tech/mcp - com.neon-mcp: Local stdio via npx @neondatabase/mcp-server-neon with API key https://claude.ai/code/session_013AxurW8hPAfnUNvik354Xx
1 parent 7c243a3 commit 5487168

2 files changed

Lines changed: 108 additions & 0 deletions

File tree

servers/com.neon-mcp-http.json

Lines changed: 45 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,45 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.neon-mcp-http",
4+
"name": "Neon (Remote)",
5+
"alias": "neon-remote",
6+
"description": "Manage Neon serverless Postgres databases through Neon's official remote MCP server with OAuth authentication. Create projects, run queries, and perform migrations.",
7+
"icon": "https://avatars.githubusercontent.com/u/77690634?v=4",
8+
"schema_version": "2.1",
9+
"categories": ["database", "cloud"],
10+
"tags": ["neon", "postgres", "postgresql", "serverless", "database", "sql", "migrations"],
11+
12+
"transport": {
13+
"type": "http",
14+
"url": "https://mcp.neon.tech/mcp",
15+
"metadata": {
16+
"inputs": []
17+
}
18+
},
19+
20+
"auth": {
21+
"type": "oauth",
22+
"instructions": "Connect via OAuth when prompted by your MCP client. You will be redirected to Neon to authorize access via browser. No API key needed."
23+
},
24+
25+
"contributor": {
26+
"name": "Neon",
27+
"github": "neondatabase",
28+
"url": "https://neon.tech"
29+
},
30+
31+
"links": {
32+
"repository": "https://github.com/neondatabase/mcp-server-neon",
33+
"homepage": "https://neon.tech",
34+
"documentation": "https://neon.com/docs/ai/neon-mcp-server"
35+
},
36+
37+
"platforms": ["all"],
38+
39+
"capabilities": {
40+
"tools": true,
41+
"resources": false,
42+
"prompts": false,
43+
"read_only_mode": false
44+
}
45+
}

servers/com.neon-mcp.json

Lines changed: 63 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,63 @@
1+
{
2+
"$schema": "../schemas/server-definition.schema.json",
3+
"id": "com.neon-mcp",
4+
"name": "Neon (Local)",
5+
"alias": "neon",
6+
"description": "Manage Neon serverless Postgres databases locally using the official Neon MCP server. Create projects, run SQL queries, and perform database migrations with your API key.",
7+
"icon": "https://avatars.githubusercontent.com/u/77690634?v=4",
8+
"schema_version": "2.1",
9+
"categories": ["database", "cloud"],
10+
"tags": ["neon", "postgres", "postgresql", "serverless", "database", "sql", "migrations"],
11+
12+
"transport": {
13+
"type": "stdio",
14+
"command": "npx",
15+
"args": ["-y", "@neondatabase/mcp-server-neon", "start", "${input:NEON_API_KEY}"],
16+
"metadata": {
17+
"inputs": [
18+
{
19+
"id": "NEON_API_KEY",
20+
"label": "Neon API Key",
21+
"description": "API key for accessing the Neon Management API. Used to manage projects, branches, and run SQL queries.",
22+
"type": "password",
23+
"required": true,
24+
"secret": true,
25+
"placeholder": "neon_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
26+
"obtain": {
27+
"url": "https://console.neon.tech/app/settings/api-keys",
28+
"instructions": "1. Go to the Neon Console\n2. Navigate to Settings > API keys\n3. Click 'Create new API key'\n4. Give it a name and click 'Create'\n5. Copy the generated key",
29+
"button_label": "Create API Key"
30+
}
31+
}
32+
]
33+
}
34+
},
35+
36+
"auth": {
37+
"type": "api_key",
38+
"instructions": "Create a Neon API key at https://console.neon.tech/app/settings/api-keys"
39+
},
40+
41+
"contributor": {
42+
"name": "Neon",
43+
"github": "neondatabase",
44+
"url": "https://neon.tech"
45+
},
46+
47+
"links": {
48+
"repository": "https://github.com/neondatabase/mcp-server-neon",
49+
"homepage": "https://neon.tech",
50+
"documentation": "https://neon.com/docs/ai/neon-mcp-server"
51+
},
52+
53+
"platforms": ["all"],
54+
55+
"capabilities": {
56+
"tools": true,
57+
"resources": false,
58+
"prompts": false,
59+
"read_only_mode": false
60+
},
61+
62+
"changelog_url": "https://github.com/neondatabase/mcp-server-neon/releases"
63+
}

0 commit comments

Comments
 (0)