-
Notifications
You must be signed in to change notification settings - Fork 56
Expand file tree
/
Copy pathcom.neon-mcp.json
More file actions
63 lines (56 loc) · 2.06 KB
/
Copy pathcom.neon-mcp.json
File metadata and controls
63 lines (56 loc) · 2.06 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"$schema": "../schemas/server-definition.schema.json",
"id": "com.neon-mcp",
"name": "Neon (Local)",
"alias": "neon",
"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.",
"icon": "https://avatars.githubusercontent.com/u/77690634?v=4",
"schema_version": "2.1",
"categories": ["database", "cloud"],
"tags": ["neon", "postgres", "postgresql", "serverless", "database", "sql", "migrations"],
"transport": {
"type": "stdio",
"command": "npx",
"args": ["-y", "@neondatabase/mcp-server-neon", "start", "${input:NEON_API_KEY}"],
"metadata": {
"inputs": [
{
"id": "NEON_API_KEY",
"label": "Neon API Key",
"description": "API key for accessing the Neon Management API. Used to manage projects, branches, and run SQL queries.",
"type": "password",
"required": true,
"secret": true,
"placeholder": "neon_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx",
"obtain": {
"url": "https://console.neon.tech/app/settings/api-keys",
"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",
"button_label": "Create API Key"
}
}
]
}
},
"auth": {
"type": "api_key",
"instructions": "Create a Neon API key at https://console.neon.tech/app/settings/api-keys"
},
"contributor": {
"name": "Neon",
"github": "neondatabase",
"url": "https://neon.tech"
},
"links": {
"repository": "https://github.com/neondatabase/mcp-server-neon",
"homepage": "https://neon.tech",
"documentation": "https://neon.com/docs/ai/neon-mcp-server"
},
"platforms": ["all"],
"capabilities": {
"tools": true,
"resources": false,
"prompts": false,
"read_only_mode": false
},
"changelog_url": "https://github.com/neondatabase/mcp-server-neon/releases"
}