|
| 1 | +{ |
| 2 | + "$schema": "../schemas/server-definition.schema.json", |
| 3 | + "id": "community.coolify", |
| 4 | + "name": "Coolify", |
| 5 | + "alias": "coolify", |
| 6 | + "description": "Manage Coolify self-hosted infrastructure. Deploy applications, manage servers, databases, and services with 35 token-optimized tools.", |
| 7 | + "icon": "https://avatars.githubusercontent.com/u/71755829?v=4", |
| 8 | + "schema_version": "2.1", |
| 9 | + "categories": ["cloud", "developer-tools"], |
| 10 | + "tags": ["coolify", "self-hosted", "deployment", "paas", "docker", "infrastructure"], |
| 11 | + |
| 12 | + "transport": { |
| 13 | + "type": "stdio", |
| 14 | + "command": "npx", |
| 15 | + "args": ["-y", "@masonator/coolify-mcp"], |
| 16 | + "env": { |
| 17 | + "COOLIFY_ACCESS_TOKEN": "${input:COOLIFY_ACCESS_TOKEN}", |
| 18 | + "COOLIFY_BASE_URL": "${input:COOLIFY_BASE_URL}" |
| 19 | + }, |
| 20 | + "metadata": { |
| 21 | + "inputs": [ |
| 22 | + { |
| 23 | + "id": "COOLIFY_ACCESS_TOKEN", |
| 24 | + "label": "Coolify API Token", |
| 25 | + "description": "API token for your Coolify instance.", |
| 26 | + "type": "password", |
| 27 | + "required": true, |
| 28 | + "secret": true, |
| 29 | + "placeholder": "your-coolify-api-token", |
| 30 | + "obtain": { |
| 31 | + "url": "https://coolify.io/docs/api-reference/authorization", |
| 32 | + "instructions": "1. Open your Coolify dashboard\n2. Navigate to API settings\n3. Generate an API token\n4. Copy the token", |
| 33 | + "button_label": "API Docs" |
| 34 | + } |
| 35 | + }, |
| 36 | + { |
| 37 | + "id": "COOLIFY_BASE_URL", |
| 38 | + "label": "Coolify Instance URL", |
| 39 | + "description": "Base URL of your Coolify instance.", |
| 40 | + "type": "url", |
| 41 | + "required": false, |
| 42 | + "secret": false, |
| 43 | + "default": "http://localhost:3000", |
| 44 | + "placeholder": "https://your-coolify-instance.com" |
| 45 | + } |
| 46 | + ] |
| 47 | + } |
| 48 | + }, |
| 49 | + |
| 50 | + "auth": { |
| 51 | + "type": "api_key", |
| 52 | + "instructions": "Generate an API token from your Coolify dashboard's API settings." |
| 53 | + }, |
| 54 | + |
| 55 | + "contributor": { |
| 56 | + "name": "masonator", |
| 57 | + "github": "masonator", |
| 58 | + "url": "https://github.com/masonator" |
| 59 | + }, |
| 60 | + |
| 61 | + "links": { |
| 62 | + "repository": "https://github.com/masonator/coolify-mcp", |
| 63 | + "homepage": "https://coolify.io", |
| 64 | + "documentation": "https://github.com/masonator/coolify-mcp#readme" |
| 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