|
| 1 | +{ |
| 2 | + "$schema": "../schemas/server-definition.schema.json", |
| 3 | + "id": "masonator.coolify-mcp-npx", |
| 4 | + "name": "Coolify (npx)", |
| 5 | + "alias": "coolify", |
| 6 | + "description": "Manage your self-hosted Coolify instance from your AI client: deploy applications, manage servers, projects, services, databases, and environments via the Coolify API.", |
| 7 | + "logo": "https://avatars.githubusercontent.com/u/81351?v=4", |
| 8 | + "schema_version": "2.1", |
| 9 | + "categories": [ |
| 10 | + "cloud" |
| 11 | + ], |
| 12 | + "tags": [ |
| 13 | + "coolify", |
| 14 | + "deployment", |
| 15 | + "self-hosted", |
| 16 | + "paas", |
| 17 | + "devops", |
| 18 | + "infrastructure" |
| 19 | + ], |
| 20 | + "transport": { |
| 21 | + "type": "stdio", |
| 22 | + "command": "npx", |
| 23 | + "args": [ |
| 24 | + "-y", |
| 25 | + "@masonator/coolify-mcp" |
| 26 | + ], |
| 27 | + "env": { |
| 28 | + "COOLIFY_BASE_URL": "${input:COOLIFY_BASE_URL}", |
| 29 | + "COOLIFY_ACCESS_TOKEN": "${input:COOLIFY_ACCESS_TOKEN}" |
| 30 | + }, |
| 31 | + "metadata": { |
| 32 | + "inputs": [ |
| 33 | + { |
| 34 | + "id": "COOLIFY_BASE_URL", |
| 35 | + "label": "Coolify Base URL", |
| 36 | + "description": "The base URL of your self-hosted Coolify instance (no trailing slash). Example: https://coolify.yourdomain.com", |
| 37 | + "type": "url", |
| 38 | + "required": true, |
| 39 | + "placeholder": "https://coolify.yourdomain.com" |
| 40 | + }, |
| 41 | + { |
| 42 | + "id": "COOLIFY_ACCESS_TOKEN", |
| 43 | + "label": "Coolify API Token", |
| 44 | + "description": "API token for your Coolify instance. Create one in Coolify under Keys & Tokens > API tokens, granting the permissions you need (read/write/deploy).", |
| 45 | + "type": "text", |
| 46 | + "required": true, |
| 47 | + "secret": true, |
| 48 | + "placeholder": "********************************", |
| 49 | + "obtain": { |
| 50 | + "url": "https://coolify.io/docs/api-reference/authorization", |
| 51 | + "instructions": "1. Open your Coolify dashboard\n2. Go to Keys & Tokens > API tokens\n3. Create a new token and select the required permissions (read/write/deploy)\n4. Copy the generated token", |
| 52 | + "button_label": "Create Token" |
| 53 | + } |
| 54 | + } |
| 55 | + ] |
| 56 | + } |
| 57 | + }, |
| 58 | + "auth": { |
| 59 | + "type": "api_key", |
| 60 | + "instructions": "Create an API token in Coolify under Keys & Tokens > API tokens, then set COOLIFY_BASE_URL to your instance URL and COOLIFY_ACCESS_TOKEN to the token." |
| 61 | + }, |
| 62 | + "contributor": { |
| 63 | + "name": "StuMason", |
| 64 | + "github": "masonator", |
| 65 | + "url": "https://github.com/StuMason/coolify-mcp" |
| 66 | + }, |
| 67 | + "links": { |
| 68 | + "repository": "https://github.com/StuMason/coolify-mcp", |
| 69 | + "homepage": "https://coolify.io", |
| 70 | + "documentation": "https://github.com/StuMason/coolify-mcp#readme" |
| 71 | + }, |
| 72 | + "platforms": [ |
| 73 | + "all" |
| 74 | + ], |
| 75 | + "capabilities": { |
| 76 | + "tools": true, |
| 77 | + "resources": false, |
| 78 | + "prompts": false, |
| 79 | + "read_only_mode": false |
| 80 | + }, |
| 81 | + "changelog_url": "https://github.com/StuMason/coolify-mcp/releases" |
| 82 | +} |
0 commit comments