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