Fire in da houseTop Tip:Paying $100+ per month for Perplexity, MidJourney, Runway, ChatGPT and other tools is crazy - get all your AI tools in one site starting at $15 per month with Galaxy AI Fire in da houseCheck it out free

coolify-mcp-server

MCP.Pizza Chef: StuMason

The Coolify MCP Server is a TypeScript-based integration layer that exposes the Coolify API through the Model Context Protocol. It enables standardized interaction with Coolify resources and applications, supporting operations like listing, deploying, starting, stopping, and restarting applications, as well as health checks and version retrieval. Designed for seamless communication with MCP clients, it simplifies managing Coolify environments programmatically.

Use This MCP server To

List all Coolify-managed resources and applications Retrieve detailed information about specific applications Start, stop, or restart Coolify applications remotely Deploy applications using tags or UUIDs via MCP Perform health checks on the Coolify system status Fetch the current version of the Coolify API for compatibility

README

Coolify MCP Server

Overview

This is still very much in development.

The Coolify MCP (Model Context Protocol) Server is an integration layer for the Coolify API, allowing users to interact with various resources and applications through a standardized interface. This server is built using TypeScript and leverages the Model Context Protocol SDK for seamless communication.

Coolify MCP Server

Coolify MCP Server

Features

  • List resources and applications
  • Get details of specific applications
  • Start, stop, and restart applications
  • Deploy applications by tag or UUID
  • Health check for system status
  • Fetch the current version of the Coolify API

Installation

To set up the Coolify MCP Server, follow these steps:

  1. Clone the repository:
git clone <repository-url>
cd coolify-mcp
  1. Install dependencies:
npm install

then run

npm build

to create the build directory.

  1. Set Claude Config:

You'll need something like this in your claude_desktop_config.json file:

    "mcpServers": {
        "coolify": {
            "command": "node",
            "args": [
                "/full/path/to/mcp-coolify/build/index.js"
            ],
            "env": {
                "COOLIFY_ACCESS_TOKEN": "coolify_api_key",
                "COOLIFY_BASE_URL": "https://your-coolify-url.co.uk"
            }
        }
    }

API Endpoints

The server supports the following operations:

  • List Resources

    • Request: list-resources
    • Response: List of all resources in Coolify.
  • List Applications

    • Request: list-applications
    • Response: List of all applications.
  • Get Application Details

    • Request: get-application
    • Parameters: {"uuid": "<application-uuid>"}
    • Response: Details of the specified application.
  • Start Application

    • Request: start-application
    • Parameters: {"uuid": "<application-uuid>"}
    • Response: Result of the start operation.
  • Stop Application

    • Request: stop-application
    • Parameters: {"uuid": "<application-uuid>"}
    • Response: Result of the stop operation.
  • Restart Application

    • Request: restart-application
    • Parameters: {"uuid": "<application-uuid>"}
    • Response: Result of the restart operation.
  • Deploy Application

    • Request: deploy
    • Parameters: {"tag": "<tag-name>", "uuid": "<application-uuid>", "force": true}
    • Response: Result of the deploy operation.
  • Get Version

    • Request: get-version
    • Response: Current version of the Coolify API.
  • Health Check

    • Request: health-check
    • Response: System health status.

Contributing

Contributions are welcome! Please open an issue or submit a pull request for any enhancements or bug fixes.

coolify-mcp-server FAQ

How do I install the Coolify MCP Server?
Clone the repository, install dependencies with npm install, then build using npm build.
What programming language is the Coolify MCP Server built with?
It is built using TypeScript for robust and maintainable code.
Can I control application lifecycle through this MCP server?
Yes, you can start, stop, and restart applications via the MCP interface.
Does the server support deployment of applications?
Yes, deployments can be triggered by tag or UUID through the MCP server.
How does the Coolify MCP Server communicate with clients?
It uses the Model Context Protocol SDK to enable seamless, standardized communication.
Is there a way to check the health status of the Coolify system?
Yes, the server provides health check endpoints to monitor system status.
Can I get the current version of the Coolify API through this server?
Yes, the server exposes an endpoint to fetch the current API version.
Is the Coolify MCP Server production-ready?
It is currently in development, so some features may be experimental or incomplete.