Track MCP LogoTrack MCP
Track MCP LogoTrack MCP

The world's largest repository of Model Context Protocol servers. Discover, explore, and submit MCP tools.

Product

  • Categories
  • Top MCP
  • New & Updated
  • Submit MCP

Company

  • About

Legal

  • Privacy Policy
  • Terms of Service
  • Cookie Policy

© 2026 TrackMCP. All rights reserved.

Built with ❤️ by Krishna Goyal

    Coolify Mcp

    V I B E D E V O P S with 100% api coverage.

    5 stars
    TypeScript
    Updated Sep 19, 2025

    Table of Contents

    • Quick Start
    • Option 1: MCP Integration (Recommended)
    • 1. Add to your MCP configuration
    • 2. (Cursor only) Enable Coolify MCP
    • 3. Start managing Coolify
    • Option 2: CLI Usage
    • Installation
    • Configuration
    • Common Commands
    • Features
    • 🔄 Applications (21 Operations)
    • 🔧 Services (14 Operations)
    • 🗄️ Databases (13 Operations)
    • 📂 Projects, Servers, Deployments
    • MCP Tools vs CLI Commands
    • Development
    • Automated API Updates
    • Manual Development
    • API Coverage
    • License
    • MCP Configuration
    • Option 1: Using npx (Recommended - Simple!)
    • Option 2: Direct node execution
    • Option 3: Global installation
    • CLI Usage

    Table of Contents

    • Quick Start
    • Option 1: MCP Integration (Recommended)
    • 1. Add to your MCP configuration
    • 2. (Cursor only) Enable Coolify MCP
    • 3. Start managing Coolify
    • Option 2: CLI Usage
    • Installation
    • Configuration
    • Common Commands
    • Features
    • 🔄 Applications (21 Operations)
    • 🔧 Services (14 Operations)
    • 🗄️ Databases (13 Operations)
    • 📂 Projects, Servers, Deployments
    • MCP Tools vs CLI Commands
    • Development
    • Automated API Updates
    • Manual Development
    • API Coverage
    • License
    • MCP Configuration
    • Option 1: Using npx (Recommended - Simple!)
    • Option 2: Direct node execution
    • Option 3: Global installation
    • CLI Usage

    Documentation

    DEPERECATED USE THE SKILL NOW:

    https://github.com/FelixAllistar/coolify-manager

    Coolify MCP Server

    A Model Context Protocol (MCP) server for managing Coolify deployments, providing both programmatic MCP tools and comprehensive CLI commands.

    Quick Start

    Option 1: MCP Integration (Recommended)

    MCP (Model Control Protocol) lets you manage Coolify directly from your AI editor.

    1. Add to your MCP configuration

    For Cursor:

    Add to ~/.cursor/mcp.json or /.cursor/mcp.json:

    json
    {
      "mcpServers": {
        "coolify-mcp": {
          "command": "npx",
          "args": ["-y", "@felixallistar/coolify-mcp", "--server"],
          "env": {
            "COOLIFY_API_URL": "https://your-coolify-instance.com",
            "COOLIFY_API_TOKEN": "your-coolify-api-token"
          }
        }
      }
    }

    For VS Code:

    Add to /.vscode/mcp.json:

    json
    {
      "servers": {
        "coolify-mcp": {
          "command": "npx",
          "args": ["-y", "@felixallistar/coolify-mcp", "--server"],
          "env": {
            "COOLIFY_API_URL": "https://your-coolify-instance.com",
            "COOLIFY_API_TOKEN": "your-coolify-api-token"
          },
          "type": "stdio"
        }
      }
    }

    🔑 Replace your-coolify-instance.com with your actual Coolify URL and your-coolify-api-token with your API token from Coolify Settings > API.

    2. (Cursor only) Enable Coolify MCP

    Open Cursor Settings (Ctrl+Shift+J) ➡ Click on MCP tab ➡ Enable coolify-mcp with the toggle

    3. Start managing Coolify

    In your AI chat, try commands like:

    txt
    List my Coolify applications
    Create a new WordPress service called "my-blog" 
    Deploy my app with ID "app-123"
    Show me all available database types

    Option 2: CLI Usage

    Installation

    bash
    # Install globally for CLI usage
    npm install -g @felixallistar/coolify-mcp
    
    # Test the installation
    coolify-mcp --help

    Configuration

    Create a .env file in your project directory:

    bash
    # Required: Your Coolify instance URL (include port if needed)
    COOLIFY_API_URL=https://your-coolify-instance.com
    
    # Required: Your Coolify API token (generate in Coolify Settings > API)
    COOLIFY_API_TOKEN=your-coolify-api-token

    Common Commands

    bash
    # Application management
    coolify-mcp apps list
    coolify-mcp apps create-public --name "my-app" --repository "https://github.com/user/repo" --project "project-id"
    coolify-mcp apps start app-id
    
    # Service management (70+ one-click services)
    coolify-mcp services types
    coolify-mcp services create --name "my-blog" --type "wordpress-with-mysql" --project "project-id"
    
    # Database management (8 database types)
    coolify-mcp databases create-postgresql --name "main-db" --project "project-id"
    coolify-mcp databases create-redis --name "cache" --project "project-id"
    
    # Project management
    coolify-mcp projects list
    coolify-mcp projects create --name "My Project"
    
    # Test connectivity
    coolify-mcp system health

    Features

    🔄 Applications (21 Operations)

    Complete application lifecycle management with 6 deployment types, environment variables, logs, and control operations.

    🔧 Services (14 Operations)

    70+ one-click services including WordPress, Ghost, MinIO, and more with full environment management.

    🗄️ Databases (13 Operations)

    8 database types: PostgreSQL, MySQL, MariaDB, MongoDB, Redis, KeyDB, ClickHouse, Dragonfly.

    📂 Projects, Servers, Deployments

    Complete infrastructure management including private keys, system administration, and deployment monitoring.

    MCP Tools vs CLI Commands

    This package provides two interaction methods with complete feature parity:

    • 🤖 MCP Tools: For AI agents and Cursor integration (recommended)
    • 💻 CLI Commands: For direct terminal usage

    Both interfaces provide identical functionality - choose based on your workflow.

    Development

    Automated API Updates

    Stay in sync with Coolify's latest API:

    bash
    npm run refresh           # Download latest API spec and rebuild
    npm run check-updates     # Check for API changes

    Manual Development

    bash
    git clone https://github.com/FelixAllistar/coolify-mcp.git
    cd coolify-mcp
    npm install
    npm run refresh
    npm run dev

    API Coverage

    ✅ 100% Coolify API Coverage - Applications, Services, Databases, Projects, Servers, Deployments, Private Keys, System Administration

    License

    GLWTPL (Good Luck With That Public License) - see LICENSE file for details.

    *This software might just work or not, there is no third option. Good luck and Godspeed.*

    MCP Configuration

    Option 1: Using npx (Recommended - Simple!)

    json
    {
      "mcpServers": {
        "coolify-mcp": {
          "command": "npx",
          "args": ["-y", "@felixallistar/coolify-mcp", "--server"],
          "env": {
            "COOLIFY_API_URL": "https://your-coolify-instance.com",
            "COOLIFY_API_TOKEN": "your-coolify-api-token"
          }
        }
      }
    }

    Option 2: Direct node execution

    json
    {
      "mcpServers": {
        "coolify-mcp": {
          "command": "node",
          "args": ["node_modules/@felixallistar/coolify-mcp/dist/index.js", "--server"],
          "env": {
            "COOLIFY_API_URL": "https://your-coolify-instance.com",
            "COOLIFY_API_TOKEN": "your-coolify-api-token"
          }
        }
      }
    }

    Option 3: Global installation

    bash
    npm install -g @felixallistar/coolify-mcp

    Then use the MCP server binary:

    json
    {
      "mcpServers": {
        "coolify-mcp": {
          "command": "coolify-mcp",
          "env": {
            "COOLIFY_API_URL": "https://your-coolify-instance.com",
            "COOLIFY_API_TOKEN": "your-coolify-api-token"
          }
        }
      }
    }

    CLI Usage

    For CLI commands, simply add arguments to the coolify-mcp command:

    bash
    # Using npx (no installation needed)
    npx @felixallistar/coolify-mcp --help
    npx @felixallistar/coolify-mcp apps list
    
    # Or install globally for easier CLI usage
    npm install -g @felixallistar/coolify-mcp
    coolify-mcp --help
    coolify-mcp apps list

    Similar MCP

    Based on tags & features

    • GL

      Glm Mcp Server

      TypeScript·
      3
    • NS

      Ns Private Access Mcp

      TypeScript·
      3
    • MC

      Mcp Server Aws Sso

      TypeScript·
      6
    • MC

      Mcp Wave

      TypeScript00

    Trending MCP

    Most active this week

    • PL

      Playwright Mcp

      TypeScript·
      22.1k
    • SE

      Serena

      Python·
      14.5k
    • MC

      Mcp Playwright

      TypeScript·
      4.9k
    • MC

      Mcp Server Cloudflare

      TypeScript·
      3.0k
    View All MCP Servers

    Similar MCP

    Based on tags & features

    • GL

      Glm Mcp Server

      TypeScript·
      3
    • NS

      Ns Private Access Mcp

      TypeScript·
      3
    • MC

      Mcp Server Aws Sso

      TypeScript·
      6
    • MC

      Mcp Wave

      TypeScript00

    Trending MCP

    Most active this week

    • PL

      Playwright Mcp

      TypeScript·
      22.1k
    • SE

      Serena

      Python·
      14.5k
    • MC

      Mcp Playwright

      TypeScript·
      4.9k
    • MC

      Mcp Server Cloudflare

      TypeScript·
      3.0k