MCP Catalogs
Home

coolify-mcp

by StuMason·372·Score 53

Comprehensive MCP server with 38 token-optimized tools for managing Coolify self-hosted PaaS through AI assistants.

ops-infradeveloper-toolsmonitoring
52
Forks
3
Open issues
this month
Last commit
2d ago
Indexed

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:

you:Debug Coolify applications and infrastructure through natural language prompts
you:Perform batch operations like restarting multiple applications or updating environment variables
you:Search Coolify documentation and get contextual help for specific configurations
you:How does the server reduce token usage?
you:Can I use this MCP server with authentication proxies?

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 README
  • get_infrastructure_overview

    Get a high-level overview of all infrastructure (servers, projects, applications, databases, services)

  • diagnose_app

    Get comprehensive app diagnostics including status, logs, env vars, and deployments

  • list_applications

    List all applications with summary details (UUID, name, status)

  • control

    Start, stop, or restart applications, databases, or services

  • application

    Create, update, or delete applications with various deployment sources

  • deploy

    Deploy an application with options for force rebuild

  • find_issues

    Scan entire infrastructure for unhealthy resources and issues

  • search_docs

    Search Coolify documentation for specific topics and configurations

  • projects

    Manage projects with create, list, get, update, or delete actions

  • env_vars

    Manage environment variables for applications and services

  • database

    Create or delete various types of databases (PostgreSQL, MySQL, MongoDB, etc.)

  • teams

    Manage team members and access to the Coolify instance

Comparable tools

generic-api-mcpbash-mcpdocker-mcp

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@latest

FAQ

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

GitHub →

Last updated · Auto-generated from public README + GitHub signals.