coolify-mcp
by StuMason·★ 372·Score 53
Comprehensive MCP server with 38 token-optimized tools for managing Coolify self-hosted PaaS through AI assistants.
Overview
The Coolify MCP Server provides extensive functionality for managing self-hosted PaaS through AI assistants. With 38 token-optimized tools, it enables natural language interaction for debugging, management, and deployment tasks. The server significantly reduces API response sizes (up to 99.6% reduction) while maintaining comprehensive functionality through summary responses and full-detail retrieval options.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
Choose this if you're using Coolify for self-hosted applications and want AI assistants to manage and debug your infrastructure through natural language commands with drastically reduced token usage.
When NOT to choose this
Don't choose this if you're not using Coolify, as it's specifically designed to interact only with the Coolify API.
Tools this server exposes
12 tools extracted from the READMEget_infrastructure_overviewGet a high-level overview of all infrastructure (servers, projects, applications, databases, services)
diagnose_appGet comprehensive app diagnostics including status, logs, env vars, and deployments
list_applicationsList all applications with summary details (UUID, name, status)
controlStart, stop, or restart applications, databases, or services
applicationCreate, update, or delete applications with various deployment sources
deployDeploy an application with options for force rebuild
find_issuesScan entire infrastructure for unhealthy resources and issues
search_docsSearch Coolify documentation for specific topics and configurations
projectsManage projects with create, list, get, update, or delete actions
env_varsManage environment variables for applications and services
databaseCreate or delete various types of databases (PostgreSQL, MySQL, MongoDB, etc.)
teamsManage team members and access to the Coolify instance
Comparable tools
Installation
Installation
Prerequisites
- Node.js >= 18
- A running Coolify instance (tested with v4.0.0-beta.460)
- Coolify API access token (generate in Coolify Settings > API)
Claude Desktop
Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"coolify": {
"command": "npx",
"args": ["-y", "@masonator/coolify-mcp"],
"env": {
"COOLIFY_ACCESS_TOKEN": "your-api-token",
"COOLIFY_BASE_URL": "https://your-coolify-instance.com"
}
}
}
}Claude Code
claude mcp add coolify \
-e COOLIFY_BASE_URL="https://your-coolify-instance.com" \
-e COOLIFY_ACCESS_TOKEN="your-api-token" \
-- npx @masonator/coolify-mcp@latestFAQ
- How does the server reduce token usage?
- The server uses token-optimized design with consolidated tools and action parameters, reducing token usage by 85% compared to naive implementations. It also provides summary responses that are up to 99.6% smaller than full API responses.
- Can I use this MCP server with authentication proxies?
- Yes, the server supports custom HTTP headers for Cloudflare Zero Trust and other auth proxies through the --header parameter in the configuration.
Compare coolify-mcp with
Last updated · Auto-generated from public README + GitHub signals.