The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Coolify MCP listing page.
MCP server for Coolify API - enables full deployment workflows from zero to production.

Targets the Coolify v4.3.10 API. Types and schemas are generated directly from Coolify's official OpenAPI spec, so tool inputs always match what the API actually accepts.
createApplication tool covers public git, GitHub App, Deploy Key, Dockerfile, and Docker Image sources — plus Docker Compose deployments via createService (since Coolify v4.1, compose deployments are services)diagnoseApp finds an app by UUID, name, or domain and aggregates status, recent deployments, failure log tails, runtime logs, and suggested next actionssearchDocs runs full-text search across the official Coolify documentation from a bundled local index — no network neededreadOnlyHint/destructiveHint) so clients can auto-approve reads and gate destructive callsClaude Desktop, one-click: download coolify-mcp.mcpb from the latest release and drag it into Settings → Extensions. You'll be prompted for your Coolify URL and token — no Node install, no JSON editing.
Via npm:
Or edit ~/.codex/config.toml:
~/.mcp.json)| Variable | Default | Description |
|---|---|---|
COOLIFY_BASE_URL | required | Coolify API URL (e.g., https://coolify.example.com/api/v1) |
COOLIFY_TOKEN | required | API token from Coolify Settings > API |
COOLIFY_ALLOW_WRITE | true | Enable write operations (create, update, delete, deploy) |
COOLIFY_STRICT_VERSION | false | Fail on API version mismatch |
COOLIFY_MCP_ELICITATION | on | Set to off to skip human confirmation on destructive deletes (escape hatch for clients that advertise elicitation but do not implement it) |
MCP_TRANSPORT | stdio | Transport: stdio, http, both |
PORT | 7331 | HTTP port (when using http transport) |
MCP_HTTP_TOKEN | unset | Bearer token required on /mcp requests (HTTP transport). Setting it also switches the default bind to 0.0.0.0 |
MCP_HTTP_HOST | 127.0.0.1 (0.0.0.0 with token) | Interface the HTTP transport binds to. Binding beyond loopback without a token logs a loud warning |
With this MCP, you can deploy an application from scratch:
| Tool | Description | Write |
|---|---|---|
listProjects | List all projects | |
createProject | Create a new project | ✓ |
updateProject | Update project name/description | ✓ |
deleteProject | Delete a project and all its resources | ✓ |
listEnvironments | List environments in a project | |
createEnvironment | Create a new environment | ✓ |
| Tool | Description | Write |
|---|---|---|
listServers | List all servers | |
getServer | Get server details | |
createServer | Create a new server | ✓ |
validateServer | Validate server connection | |
listPrivateKeys | List SSH private keys | |
createPrivateKey | Create a new SSH key | ✓ |
listGithubApps | List configured GitHub Apps |
| Tool | Description |
|---|---|
listApplications | List all applications (summarized by default) |
getApplication | Get application details (secrets masked by default) |
getLogs | Get application runtime logs |
| Tool | Description | Write |
|---|---|---|
createApplication | Create an application; type selects the source: public, private-github-app, private-deploy-key, dockerfile, or dockerimage. Long-tail fields go in extra and are validated per type. | ✓ |
Docker Compose deployments are created with
createServicepassingdocker_compose_raw— since Coolify v4.1 they are services, not applications.
| Tool | Description | Write |
|---|---|---|
updateApplication | Update application configuration | ✓ |
deleteApplication | Delete an application | ✓ |
startApplication | Start an application | ✓ |
stopApplication | Stop an application | ✓ |
restartApplication | Restart an application | ✓ |
| Tool | Description | Write |
|---|---|---|
applicationEnvs | Manage application env vars: list (masked by default), create, update, upsert by key, bulk_update, delete | ✓ |
Database and service env vars have their own tools:
databaseEnvsandserviceEnvs.
| Tool | Description | Write |
|---|---|---|
deploy | Trigger a deployment; wait: true polls to the terminal status and returns a log tail on failure | ✓ |
diagnoseApp | Diagnose an app by UUID, name, or domain: status, recent deployments, failure log tail, runtime logs, hints | |
diagnoseServer | Diagnose a server by UUID, name, or IP: resource status breakdown, domains, hints | |
listDeployments | List running deployments | |
getDeployment | Get deployment status and logs | |
listAppDeployments | List deployments for an application | |
cancelDeployment | Cancel a running deployment | ✓ |
| Tool | Description | Write |
|---|---|---|
listDatabases | List all databases | |
getDatabase | Get database details | |
createDatabase | Create a database; type selects the engine: postgresql, mysql, mariadb, mongodb, redis, keydb, dragonfly, clickhouse | ✓ |
updateDatabase | Update database configuration | ✓ |
deleteDatabase | Delete a database (volumes/configs deleted by default) | ✓ |
controlDatabase | Start, stop, or restart a database | ✓ |
databaseBackups | Manage backup schedules and executions (list/create/update/delete/list_executions/delete_execution) | ✓ |
databaseEnvs | Manage database env vars (list/create/update/bulk_update/delete) | ✓ |
| Tool | Description | Write |
|---|---|---|
listServices | List services | |
getService | Get service details (secrets masked by default) | |
createService | Create a one-click service or Docker Compose deployment | ✓ |
updateService | Update a service | ✓ |
deleteService | Delete a service | ✓ |
controlService | Start, stop, or restart a service | ✓ |
serviceEnvs | Manage service env vars (list/create/update/bulk_update/delete) | ✓ |
| Tool | Description | Write |
|---|---|---|
storages | Manage persistent volumes and file mounts for applications, databases, and services | ✓ |
scheduledTasks | Manage cron tasks for applications and services, including execution history | ✓ |
deletePreview | Delete a preview deployment by pull request id | ✓ |
| Tool | Description | Write |
|---|---|---|
teams | List teams, get current team, and list members | |
updateServer | Update server configuration | ✓ |
deleteServer | Delete a server | ✓ |
getServerResources | List resources running on a server | |
getServerDomains | List domains configured on a server | |
getPrivateKey | Get SSH key metadata (key material masked by default) | |
updatePrivateKey | Update an SSH private key | ✓ |
deletePrivateKey | Delete an SSH private key | ✓ |
getGithubAppRepositories | List repositories accessible to a GitHub App | |
getGithubAppBranches | List branches of a repository |
| Tool | Description | Write |
|---|---|---|
getInfrastructureOverview | One-call summary of servers, projects, applications (status breakdown), databases, services, and running deployments | |
restartProjectApps | Restart every application in a project or environment (asks for confirmation) | ✓ |
redeployProject | Trigger a deployment for every application in a project or environment (asks for confirmation) | ✓ |
stopAllApplications | Emergency stop of all running applications, optionally per project (asks for confirmation, stating the blast radius) | ✓ |
| Tool | Description |
|---|---|
listResources | List all resources with filtering |
searchDocs | Full-text search across the official Coolify docs (bundled index, no network) |
getHealth | Check that the Coolify API is up |
Disable all write operations:
showSecrets: true only when necessaryThe HTTP transport binds to 127.0.0.1 by default. To expose it beyond loopback, set MCP_HTTP_TOKEN — every request to /mcp must then carry Authorization: Bearer <token> (checked in constant time) — and the bind switches to 0.0.0.0 (override with MCP_HTTP_HOST). Binding to a non-loopback host without a token logs a loud warning: anyone who can reach the port controls your Coolify instance.
On MCP clients that support elicitation (Claude Code, VS Code Copilot), deleting a project, application, database, service, server, or private key asks you to confirm first, stating what will be lost. Clients without elicitation behave exactly as before. A decline, cancel, or timeout aborts the call; set COOLIFY_MCP_ELICITATION=off to disable the prompts entirely.
Version is defined in src/coolify/constants.ts. To update:
COOLIFY_VERSION in src/coolify/constants.tsnpm run generateio.github.frndchagas/coolify-mcpMIT