|
| 1 | +{ |
| 2 | + "$schema": "../schemas/server-definition.schema.json", |
| 3 | + "id": "com.koyeb-mcp", |
| 4 | + "name": "Koyeb", |
| 5 | + "alias": "koyeb", |
| 6 | + "description": "Manage Koyeb serverless applications and services. Deploy apps, manage domains, view logs, and configure autoscaling.", |
| 7 | + "icon": "https://avatars.githubusercontent.com/u/50234573?v=4", |
| 8 | + "schema_version": "2.1", |
| 9 | + "categories": ["cloud", "developer-tools"], |
| 10 | + "tags": ["koyeb", "serverless", "deployment", "hosting", "paas"], |
| 11 | + |
| 12 | + "transport": { |
| 13 | + "type": "stdio", |
| 14 | + "command": "npx", |
| 15 | + "args": ["-y", "@koyeb/mcp-server"], |
| 16 | + "env": { |
| 17 | + "KOYEB_TOKEN": "${input:KOYEB_TOKEN}" |
| 18 | + }, |
| 19 | + "metadata": { |
| 20 | + "inputs": [ |
| 21 | + { |
| 22 | + "id": "KOYEB_TOKEN", |
| 23 | + "label": "Koyeb API Token", |
| 24 | + "description": "API token for the Koyeb platform.", |
| 25 | + "type": "password", |
| 26 | + "required": true, |
| 27 | + "secret": true, |
| 28 | + "placeholder": "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx", |
| 29 | + "obtain": { |
| 30 | + "url": "https://app.koyeb.com/settings/api", |
| 31 | + "instructions": "1. Go to app.koyeb.com > Account > API\n2. Click 'Generate API Token'\n3. Copy the generated token", |
| 32 | + "button_label": "Generate Token" |
| 33 | + } |
| 34 | + } |
| 35 | + ] |
| 36 | + } |
| 37 | + }, |
| 38 | + |
| 39 | + "auth": { |
| 40 | + "type": "api_key", |
| 41 | + "instructions": "Generate an API token at https://app.koyeb.com/settings/api" |
| 42 | + }, |
| 43 | + |
| 44 | + "contributor": { |
| 45 | + "name": "Koyeb", |
| 46 | + "github": "koyeb", |
| 47 | + "url": "https://www.koyeb.com" |
| 48 | + }, |
| 49 | + |
| 50 | + "links": { |
| 51 | + "repository": "https://github.com/koyeb/mcp-server-koyeb", |
| 52 | + "homepage": "https://www.koyeb.com", |
| 53 | + "documentation": "https://www.koyeb.com/docs" |
| 54 | + }, |
| 55 | + |
| 56 | + "platforms": ["all"], |
| 57 | + |
| 58 | + "capabilities": { |
| 59 | + "tools": true, |
| 60 | + "resources": false, |
| 61 | + "prompts": false, |
| 62 | + "read_only_mode": false |
| 63 | + } |
| 64 | +} |
0 commit comments