|
| 1 | +{ |
| 2 | + "$schema": "../schemas/server-definition.schema.json", |
| 3 | + "id": "com.upstash-mcp", |
| 4 | + "name": "Upstash", |
| 5 | + "alias": "upstash", |
| 6 | + "description": "Create and manage Upstash Redis databases. List databases, create backups, view usage stats, and manage credentials.", |
| 7 | + "icon": "https://avatars.githubusercontent.com/u/74989412?v=4", |
| 8 | + "schema_version": "2.1", |
| 9 | + "categories": ["database", "cloud"], |
| 10 | + "tags": ["upstash", "redis", "serverless", "database", "cache", "cloud"], |
| 11 | + |
| 12 | + "transport": { |
| 13 | + "type": "stdio", |
| 14 | + "command": "npx", |
| 15 | + "args": ["-y", "@upstash/mcp-server@latest", "--email", "${input:UPSTASH_EMAIL}", "--api-key", "${input:UPSTASH_API_KEY}"], |
| 16 | + "metadata": { |
| 17 | + "inputs": [ |
| 18 | + { |
| 19 | + "id": "UPSTASH_EMAIL", |
| 20 | + "label": "Upstash Email", |
| 21 | + "description": "Email address associated with your Upstash account.", |
| 22 | + "type": "text", |
| 23 | + "required": true, |
| 24 | + "secret": false, |
| 25 | + "placeholder": "you@example.com", |
| 26 | + "obtain": { |
| 27 | + "url": "https://console.upstash.com", |
| 28 | + "instructions": "Use the email address you registered with at console.upstash.com", |
| 29 | + "button_label": "Open Console" |
| 30 | + } |
| 31 | + }, |
| 32 | + { |
| 33 | + "id": "UPSTASH_API_KEY", |
| 34 | + "label": "Upstash API Key", |
| 35 | + "description": "Developer API key for the Upstash management API.", |
| 36 | + "type": "password", |
| 37 | + "required": true, |
| 38 | + "secret": true, |
| 39 | + "placeholder": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", |
| 40 | + "obtain": { |
| 41 | + "url": "https://console.upstash.com/account/api", |
| 42 | + "instructions": "1. Go to console.upstash.com/account/api\n2. Copy your Management API key", |
| 43 | + "button_label": "Get API Key" |
| 44 | + } |
| 45 | + } |
| 46 | + ] |
| 47 | + } |
| 48 | + }, |
| 49 | + |
| 50 | + "auth": { |
| 51 | + "type": "api_key", |
| 52 | + "instructions": "Get your email and API key from https://console.upstash.com/account/api" |
| 53 | + }, |
| 54 | + |
| 55 | + "contributor": { |
| 56 | + "name": "Upstash", |
| 57 | + "github": "upstash", |
| 58 | + "url": "https://upstash.com" |
| 59 | + }, |
| 60 | + |
| 61 | + "links": { |
| 62 | + "repository": "https://github.com/upstash/mcp-server", |
| 63 | + "homepage": "https://upstash.com", |
| 64 | + "documentation": "https://upstash.com/docs/redis/integrations/mcp" |
| 65 | + }, |
| 66 | + |
| 67 | + "platforms": ["all"], |
| 68 | + |
| 69 | + "capabilities": { |
| 70 | + "tools": true, |
| 71 | + "resources": false, |
| 72 | + "prompts": false, |
| 73 | + "read_only_mode": false |
| 74 | + } |
| 75 | +} |
0 commit comments