awesome-coolify-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@awesome-coolify-mcpcheck if my Coolify instance is online"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
๐ Table of contents
Related MCP server: coolify-mcp
๐ญ Overview
Self-hosted Coolify is one of the best open-source alternatives to Heroku/Vercel-style PaaS platforms โ but wiring it up to an AI coding agent has historically meant piecing together several small, overlapping community MCP integrations, each with its own schema, its own error format, and its own idea of what "safe" looks like.
awesome-coolify-mcp replaces that patchwork with a single, community-maintained MCP server that speaks Coolify's REST API 4.1.x through a clean, action-based tool surface. Source, docs, and npm distribution live in one public repo โ clezcoding/awesome-coolify โ while the installable package stays awesome-coolify-mcp. Instead of memorizing dozens of near-identical tool names, your agent calls domain tools with an action field:
application({ action: "deploy", uuid: "<app-uuid>", wait: true })
diagnose({ action: "scan" })
emergency({ action: "stop_all", confirm: true })Under the hood, every call goes through the same request pipeline: Zod-validated input, retrying HTTP client, secret-aware output masking, and structured error envelopes with recovery hints โ so your agent fails gracefully instead of guessing.
This is a community project built for people who run their own Coolify instances.It is not affiliated with or endorsed by Coolify Labs.
๐ Why awesome-coolify-mcp
Typical setup without it | With awesome-coolify-mcp |
Several overlapping community MCP tools, each with its own schema | One server, one consistent schema |
Dozens of granular, single-purpose tools per resource | 14 domain tools ร |
Ad-hoc error strings that agents have to guess at | Structured codes ( |
Secrets can leak straight into agent context | Default secret masking + confirmation gates on destructive actions |
Read a wall of raw JSON to find what changed | Bounded, paginated projections tuned for LLM context windows |
Today, the focus covers day-2 operations plus growing infrastructure CRUD: verify connectivity, discover your fleet, deploy, pull logs, diagnose incidents, run gated emergency ops โ and manage SSH keys, servers, projects, and environments. Full CRUD for applications, services, and databases is next โ see Coming soon.
โจ Features
Action-based tools across 14 domains โ call
application({ action: "deploy", uuid })instead of hunting through dozens of tool names. Domains span ops (system,resource,diagnose,application,deployment,service,database,emergency), infrastructure CRUD (private_key,server,project,environment), plusdocsandmeta.Ops workflows that mirror real incidents โ a single
system.infrastructure_overviewcall for the big picture, fuzzyresource.findwhen you only remember a name or domain,diagnose.app/diagnose.serverfor a specific suspect, anddiagnose.scanwhen you just know something is wrong fleet-wide.Deploy lifecycle that agents can actually drive โ start/stop/restart, deploy with optional wait-and-poll or force rebuild, list/get/cancel deployments, and bounded runtime or build logs that won't blow your context window.
Service & database lifecycle โ start/stop/restart/get, plus service redeploy with an optional fresh image pull.
Safety by default, not by convention โ emergency mutations require an explicit
confirm: true; sensitive keys (password,token,secret,private,env) render as***unless you opt in withreveal: true.Agent-friendly failure modes โ every error is a parseable envelope with a
code, a humanmessage, andrecoveryHints; transient network/429/5xx failures retry automatically with exponential backoff.Broad client coverage out of the box โ Cursor, VS Code / GitHub Copilot, Claude Desktop, Claude Code, Windsurf, and 15+ more via the install configurator.
๐๏ธ How it works
MCP client (Cursor / Claude / VS Code / โฆ)
โ stdio MCP
โผ
awesome-coolify-mcp (14 domain tools + action discriminator)
โ HTTPS + Bearer token
โผ
Coolify REST API 4.1.x (servers ยท projects ยท applications ยท services ยท databases)The server itself is intentionally boring: it holds no long-lived state and never touches your IDE's config files. Your MCP host (Cursor, Claude, VS Code, โฆ) injects COOLIFY_URL and COOLIFY_TOKEN through its MCP config's env block; the process reads them from its environment (or an optional local .env when you run it directly from the CLI) and forwards authenticated requests to your Coolify instance over HTTPS.
๐ Quick start
Prerequisites
Node.js 22.14+ (CI runs on Node 24)
A self-hosted Coolify instance on 4.1.x
An API token from Coolify โ Keys & Tokens (authorization docs)
Run it directly with npx โ no global install needed:
npx -y awesome-coolify-mcpWire the two required environment variables into your MCP host (see Install for every client). Once connected, a minimal smoke test looks like this:
meta({ action: "version" }) // server identity โ no Coolify call
system({ action: "verify" }) // authenticate + connectivity check
system({ action: "infrastructure_overview" }) // servers, projects, apps, services, DBs at a glanceEmergency actions (stop_all, redeploy_project, restart_project) require confirm: true. Call them without confirm first โ you'll get a would_affect preview and no mutation runs. Only pass reveal: true when you genuinely need plaintext secrets back.
๐ฆ Install
There are three equally supported paths โ pick whichever fits your workflow.
1. One-click deeplink
Best when you already have your Coolify URL and token handy. Placeholder credentials work fine too โ you'll be prompted to fill them in, or you can swap them afterwards.
Both editors implement a protocol handler that reads a JSON server configuration straight out of the URL:
Client | Scheme | Encoding |
Cursor |
|
|
VS Code / Copilot |
|
|
Clicking the button opens your editor, shows the server it's about to add, and lets you review or edit the command/env before accepting โ nothing is installed silently.
2. Install configurator (GitHub Pages)
Use the browser configurator to type in your real COOLIFY_URL / COOLIFY_TOKEN and generate a ready-to-paste snippet for your exact client โ JSON, TOML, or YAML depending on what that client expects.
Everything runs client-side in your browser. Your token is never sent to a backend, logged, or stored anywhere but the config file you paste it into.
3. Manual MCP config
Paste this into your host's MCP configuration file. Cursor example (~/.cursor/mcp.json for global, or .cursor/mcp.json in a project):
{
"mcpServers": {
"awesome-coolify-mcp": {
"command": "npx",
"args": ["-y", "awesome-coolify-mcp"],
"env": {
"COOLIFY_URL": "https://coolify.example.com",
"COOLIFY_TOKEN": "YOUR_COOLIFY_API_TOKEN",
"COOLIFY_VERIFY_SSL": "true",
"COOLIFY_MCP_LOG": "info"
}
}
}
}A ready-made copy-paste template also lives at docs/mcp.example.json.
๐ฅ๏ธ Supported clients
Client | Config location | Notes |
Cursor |
| One-click deeplink or manual JSON |
VS Code / GitHub Copilot |
| Native |
Claude Desktop |
| Manual JSON or configurator output today |
Claude Code |
| stdio via |
Windsurf |
| Same |
The install configurator covers a much wider matrix โ OpenCode, Codex CLI, Gemini CLI, Cline, Kilo Code, Goose, LM Studio, Hermes Agent, Kimi Code, Google Antigravity, OpenClaw, and more โ with the correct config shape for each.
Claude Desktop currently ships as manual JSON / configurator output only โ a dedicated.mcpb bundle is on the roadmap (see Coming soon).
๐ Environment variables
Variable | Required | Default | Description |
| yes | โ | Coolify base URL, no trailing slash โ e.g. |
| yes | โ | Bearer API token, scoped to your team |
| no |
| Set to |
| no |
| Log verbosity: |
Credentials are read from the process environment (your IDE's MCP env block) or an optional local .env file when running the CLI directly. They are never echoed back inside tool responses.
โ๏ธ Coolify Cloud
awesome-coolify-mcp works with Coolify Cloud using the same 14 tools โ team-scoped tokens, structured cloud error codes (COOLIFY_CLOUD_FORBIDDEN, COOLIFY_CLOUD_UNSUPPORTED), and local instance action cloud-info for discovery.
Full setup, smoke test, and known limits โ docs/en/cloud.md
๐งฐ Tools reference
Every domain is exposed as one MCP tool with an action discriminator, so your agent's tool list stays short while the capability surface stays wide.
system({ action: "health" })
application({ action: "deploy", uuid: "<app-uuid>", wait: true })
emergency({ action: "stop_all", confirm: true })๐ฅ๏ธ system โ connectivity & overview
Your first call in any session: is Coolify reachable, and what does the fleet look like right now?
Action | Purpose |
| Verify Coolify API reachability |
| Coolify instance version string |
| Authenticate; returns connectivity + version in one call |
| Aggregate counts across servers, projects, applications, services, databases |
๐ท๏ธ meta โ server identity
Action | Purpose |
| awesome-coolify-mcp's own package name + semver โ no Coolify call at all |
๐ resource โ discovery
For when you know roughly what you're looking for but not its exact UUID.
Action | Purpose |
| Applications, services, and databases as summary projections, with pagination |
| Fuzzy search by name, domain, or IP across servers and resources โ ranked, capped at 10 |
๐ฉบ diagnose โ investigation
The tool you reach for when something feels wrong but you don't yet know what.
Action | Purpose |
| App status, health, env var count, and recent deployments |
| Server resources, domains, and reachability |
| Fleet-wide issues grouped by severity โ the "what's on fire" button |
๐ application โ app operations
Action | Purpose |
| Detailed application configuration |
| Container lifecycle control |
| Trigger a deploy, with optional |
| Paginated runtime or build logs, bounded so they never blow your context |
| List or fetch env vars (values masked as |
| Create or update individual env vars (supports |
| Delete one env var โ requires |
| Patch many env vars at once โ requires |
| Diff/apply a local |
๐ deployment โ deploy tracking
Action | Purpose |
| Deployments for a given application |
| Status, commit, and timing details for one deployment |
| Cancel an in-flight deployment cleanly |
๐งฉ service / database โ sidecar lifecycle
Tool | Actions |
|
|
|
|
๐ฑ Resource environment variables (envs:*)
Manage Coolify runtime configuration on applications, services, and databases through envs:* actions on the existing domain tools โ no separate env MCP tool.
Tool |
| Notes |
|
| Only tool with local |
|
| No sync โ use |
|
|
|
Confirm gates: envs:delete and envs:bulk-update always require confirm: true on all three tools. On application only, envs:sync requires confirm: true when applying (dry_run: false, the default) or when prune: true.
Reveal policy: Env values render as *** by default. Pass reveal: true only after the human explicitly asks for plaintext โ the agent must not auto-set reveal: true.
envs:sync semantics (application only): Supply exactly one of env_file (local path) or env_content (inline .env text). dry_run: true returns a diff (added, updated, unchanged, removed, optional conflicts) with no API writes; default dry_run: false applies changes. Remote keys missing locally are never deleted unless prune: true (also requires confirm: true). When local and remote values differ, set conflict_policy to overwrite, keep_remote, or abort after asking the human โ apply with conflicts and no policy returns COOLIFY_CONFIRM_REQUIRED.
application({ action: "envs:list", uuid: "<app-uuid>" })
application({ action: "envs:sync", uuid: "<app-uuid>", env_file: "./.env", dry_run: true })
application({ action: "envs:sync", uuid: "<app-uuid>", env_content: "API_KEY=EXAMPLE_VALUE\n", confirm: true, conflict_policy: "overwrite" })๐พ Database backups (backup:*)
Configure, list, update, delete, and trigger backup schedules โ and inspect execution history โ on the existing database tool. No separate backup MCP tool.
Action | Purpose |
| Create a backup schedule (frequency required; optional S3, retention, |
| List backup schedules for a database |
| Update schedule fields (frequency, retention, S3 flags) |
| Remove a schedule โ requires |
| Trigger an immediate backup run |
| List executions for a schedule (status, timestamps, size) |
Parent identity: All backup actions require the parent database via uuid or name. Schedule-scoped actions (backup:update, backup:delete, backup:now, backup:history) also require scheduled_backup_uuid.
Confirm gates: backup:delete requires confirm: true โ otherwise COOLIFY_CONFIRM_REQUIRED. delete_s3 defaults false (config-only delete). When delete_s3: true, deletion still requires confirm: true โ purging S3 artifacts is treated as destructive.
Frequency (Pitfall 1): backup:create accepts OpenAPI named presets (every_minute, hourly, daily, weekly, monthly, yearly) or a cron expression. backup:update accepts presets only โ passing cron on update returns COOLIFY_VALIDATION_ERROR.
backup:now semantics: Maps to Coolify PATCH with { backup_now: true } on the schedule โ no separate trigger endpoint. Requires scheduled_backup_uuid.
Reveal policy: S3-related credentials in backup config responses are masked as *** by default. Pass reveal: true only after the human explicitly asks for plaintext โ the agent must not auto-set reveal: true.
Out of scope (v2.x+): Backup execution delete, restore/import from backup, and S3 storage destination CRUD are not available in this release.
database({ action: "backup:list", uuid: "<db-uuid>" })
database({ action: "backup:create", uuid: "<db-uuid>", frequency: "daily", save_s3: false })
database({ action: "backup:now", uuid: "<db-uuid>", scheduled_backup_uuid: "<schedule-uuid>" })
database({ action: "backup:delete", uuid: "<db-uuid>", scheduled_backup_uuid: "<schedule-uuid>", confirm: true })๐ private_key โ SSH key CRUD
Manage Coolify private keys with PEM content masked by default.
Action | Purpose |
| List or fetch a key (PEM masked unless |
| Add or rotate SSH keys |
| Remove a key, or preview dependents before delete |
๐ง server โ server CRUD & validation
Action | Purpose |
| Server details, domains, and reachability |
| Register or reconfigure a server |
| Trigger Coolify's server validation check |
| Remove a server, or preview dependents first |
๐ project โ project CRUD
Action | Purpose |
| Discover or inspect projects |
| Stand up or rename projects |
| Delete a project, or preview blast radius first |
๐ environment โ environment CRUD
Action | Purpose |
| List or inspect environments inside a project |
| Add a new environment to a project |
| Remove an environment, or preview dependents first |
๐ docs โ offline guides
Action | Purpose |
| Search a bundled, curated Coolify troubleshooting index โ not a live web fetch, so it works offline and can't be used as an external fetch vector |
๐จ emergency โ high-impact ops (gated)
Reach for these only when you mean it โ every action below is behind a confirmation gate.
Action | Purpose |
| Stop every running application, fleet-wide โ requires |
| Redeploy every app in a project โ requires |
| Restart every app in a project โ requires |
๐ก๏ธ Safety model
Confirmation gate
Destructive emergency actions follow a strict two-step pattern:
Call with
confirmomitted orfalseโ you get back awould_affectpreview and error codeCOOLIFY_CONFIRM_REQUIREDโ nothing is mutated.Call again with
confirm: trueโ the action actually executes.
Regular app/service/database mutations (start, stop, deploy, โฆ) are not behind this gate โ they simply follow Coolify's own API semantics, since they're scoped to one resource rather than your whole fleet.
Environment variables: envs:delete and envs:bulk-update require confirm: true on application, service, and database. envs:sync apply (dry_run: false) and envs:sync with prune: true require confirm: true on application only. dry_run: true sync previews never mutate.
Secret masking
Keys matching
password,token,secret,private, orenvrender as***by default in tool output.Pass
reveal: trueonly when you explicitly need plaintext โ for example, to copy an env var into another system. Ask the human first before settingreveal: trueon anyenvs:*call.Log line bodies are not masked. Treat raw logs like you would any other sensitive output: don't paste them into long-lived agent memory or public tickets.
โ ๏ธ Structured errors & retries
Every API failure comes back as a parseable envelope your agent can reason about, instead of a raw stack trace:
{
"code": "COOLIFY_401",
"message": "Unauthorized โ invalid or expired API token",
"recoveryHints": [
"Verify the token in Coolify UI โ Keys & Tokens",
"Ensure the token has the required team permissions"
],
"httpStatus": 401
}Code | Meaning |
| Invalid or missing token |
| Resource not found |
| Validation error |
| Coolify server error |
| Connection failed |
| Request timed out |
| Emergency preview โ pass |
| Name matched multiple resources โ pick a UUID from the ranked list |
Transient failures (HTTP 429, 5xx, or network errors) retry automatically up to 3 times with exponential backoff (1s โ 2s โ 4s) before giving up and returning the error to your agent.
๐ฌ Example agent workflows
"Is my Coolify reachable, and what do I have?"
system({ action: "verify" })
system({ action: "infrastructure_overview" })
resource({ action: "list" })"Find the nginx app, deploy it, then show me the logs."
resource({ action: "find", query: "nginx" })
application({ action: "deploy", uuid: "<uuid>", wait: true })
application({ action: "logs", uuid: "<uuid>" })"Something feels wrong across the fleet."
diagnose({ action: "scan" })
diagnose({ action: "app", uuid: "<suspect>" })
diagnose({ action: "server", uuid: "<server>" })"Emergency: stop everything, but let me see the blast radius first."
emergency({ action: "stop_all" }) // preview โ would_affect, no mutation
emergency({ action: "stop_all", confirm: true }) // executeโ Status today
The server is stable and actively used for day-2 operations against real Coolify 4.1.x instances:
Capability | Status |
Verify connectivity + infrastructure overview | โ Shipped |
Discovery: | โ Shipped |
Diagnose: app, server, fleet-wide scan + follow-up hints | โ Shipped |
Deploy lifecycle: start/stop/restart, deploy with wait-mode + force rebuild | โ Shipped |
Deployment tracking: list / get / cancel | โ Shipped |
App logs: runtime + build, bounded and paginated | โ Shipped |
Service & database lifecycle | โ Shipped |
Emergency ops: stop-all, project redeploy/restart, behind confirm gate | โ Shipped |
SSH key CRUD ( | โ Shipped |
Server CRUD + validation ( | โ Shipped |
Project & environment CRUD ( | โ Shipped |
Secret masking with explicit | โ Shipped |
Structured errors, recovery hints, automatic retries | โ Shipped |
npm distribution + install configurator for 15+ clients | โ Shipped |
Service/database log tailing is temporarily on hold โ Coolify 4.1.x's REST API doesn't expose a /services/{uuid}/logs or /databases/{uuid}/logs endpoint yet (the fix has merged upstream but isn't backported to 4.1.x). It'll ship the moment the endpoint is reachable, with no half-working stub in the meantime.
๐ฎ Coming soon
The next milestone focuses on creation for workloads, not just infrastructure scaffolding โ turning awesome-coolify-mcp into a tool that can stand up new applications, services, and databases from scratch, not only manage what already exists. Planned areas, roughly in order of priority:
Full CRUD for applications, services, and databases โ create, update, and delete, not just start/stop/deploy
Environment variable management โ read, write, bulk-sync from a local
.envOne-click services โ full service catalog with compose YAML, storage, and env configuration
Database backups โ schedules, executions, and on-demand triggers
Scheduled tasks โ cron job CRUD, execution history, run-once triggers
Teams & multi-tenancy โ list/get teams and members, per-project scoped tokens
Cloud provider tokens โ Hetzner/DigitalOcean provisioning credentials (SSH keys already shipped)
GitHub App integration โ repo/branch discovery, enterprise URLs
Claude Desktop
.mcpbpackaging โ true one-click install, no manual JSONDeeper observability โ container-level metrics, Traefik insight, live event streams, log search
Have a use case that isn't listed? Open an issue โ the roadmap is shaped by what the community actually runs into.
๐ ๏ธ Local development
git clone https://github.com/clezcoding/awesome-coolify.git
cd awesome-coolify
npm install
npm run build # tsup โ dist/
npm test # vitest
npm run dev # watch modeLogs go to stderr only โ stdout is reserved exclusively for the MCP protocol.
The maintainer publish flow (build โ pack --dry-run โ publish) is documented in CONTRIBUTING.md.
๐ Links
Resource | URL |
Install configurator | |
Install landing page | |
Example MCP JSON | |
Brand assets | |
Coolify | |
MCP specification | |
Issues & feature requests | |
Contributing | |
License |
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/clezcoding/awesome-coolify'
If you have feedback or need assistance with the MCP directory API, please join our Discord server