Coolify Mcp API

The Mcp API from Coolify — 2 operation(s) for mcp.

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/coolify-mcp-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no email required.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

coolify-mcp-api-openapi.yml Raw ↑
openapi: 3.1.0
info:
  title: Coolify Applications Mcp API
  version: '0.1'
  description: Applications
servers:
- url: https://app.coolify.io/api/v1
  description: Coolify Cloud API. Change the host to your own instance if you are self-hosting.
tags:
- name: Mcp
paths:
  /mcp/enable:
    post:
      summary: Enable MCP Server
      description: Enable the MCP server endpoint at /mcp (only with root permissions).
      operationId: enable-mcp
      responses:
        '200':
          description: MCP server enabled.
          content:
            application/json:
              schema:
                properties:
                  message:
                    type: string
                    example: MCP server enabled.
                type: object
        '403':
          description: You are not allowed to enable the MCP server.
          content:
            application/json:
              schema:
                properties:
                  message:
                    type: string
                    example: You are not allowed to enable the MCP server.
                type: object
        '401':
          $ref: '#/components/responses/401'
        '400':
          $ref: '#/components/responses/400'
      security:
      - bearerAuth: []
      tags:
      - Mcp
  /mcp/disable:
    post:
      summary: Disable MCP Server
      description: Disable the MCP server endpoint at /mcp (only with root permissions).
      operationId: disable-mcp
      responses:
        '200':
          description: MCP server disabled.
          content:
            application/json:
              schema:
                properties:
                  message:
                    type: string
                    example: MCP server disabled.
                type: object
        '403':
          description: You are not allowed to disable the MCP server.
          content:
            application/json:
              schema:
                properties:
                  message:
                    type: string
                    example: You are not allowed to disable the MCP server.
                type: object
        '401':
          $ref: '#/components/responses/401'
        '400':
          $ref: '#/components/responses/400'
      security:
      - bearerAuth: []
      tags:
      - Mcp
components:
  responses:
    '400':
      description: Invalid token.
      content:
        application/json:
          schema:
            properties:
              message:
                type: string
                example: Invalid token.
            type: object
    '401':
      description: Unauthenticated.
      content:
        application/json:
          schema:
            properties:
              message:
                type: string
                example: Unauthenticated.
            type: object
  securitySchemes:
    bearerAuth:
      type: http
      description: Go to `Keys & Tokens` / `API tokens` and create a new token. Use the token as the bearer token.
      scheme: bearer