Coolify MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| COOLIFY_API_URL | Yes | The URL of your Coolify instance (e.g., http://localhost:8000) | |
| COOLIFY_TEAM_ID | No | Optional team ID for Coolify | |
| COOLIFY_API_TOKEN | Yes | Your Coolify API token, generated in Keys & Tokens > API tokens |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
| resources | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| list_applicationsA | List all applications in Coolify |
| get_applicationA | Get details of a specific application |
| create_applicationC | Create a new application |
| start_applicationC | Start an application |
| stop_applicationC | Stop an application |
| restart_applicationC | Restart an application |
| deploy_applicationC | Deploy an application |
| list_databasesA | List all databases in Coolify |
| create_databaseC | Create a new database |
| list_serversA | List all servers in Coolify |
| create_serverC | Create a new server |
| validate_serverC | Validate server connection |
| list_projectsA | List all projects in Coolify |
| create_projectB | Create a new project |
| list_servicesA | List all services in Coolify |
| start_serviceC | Start a service |
| stop_serviceC | Stop a service |
| get_versionA | Get Coolify version information |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| Coolify Applications | List all applications in Coolify |
| Coolify Databases | List all databases in Coolify |
| Coolify Servers | List all servers in Coolify |
| Coolify Projects | List all projects in Coolify |
| Coolify Services | List all services in Coolify |
| Coolify Teams | List all teams in Coolify |
TDQS
Scored across 18 tools
Most tools are clearly separated by resource type and action, such as list_applications vs list_databases. The only slight ambiguity is start_application vs deploy_application, which have related but not identical purposes.
All tools use a consistent verb_noun snake_case pattern, e.g., list_applications, create_database, validate_server, get_version. There are no mixed conventions or vague generic names.
18 tools is slightly above the typical sweet spot but reasonable given the server covers applications, databases, servers, projects, services, and version info. Each tool corresponds to a concrete operation, so the count feels justified rather than bloated.
Application lifecycle coverage is fairly strong with create, get, list, start, stop, restart, and deploy, but update and delete are missing. Other resources are much thinner: databases only support list/create, servers list/create/validate, projects list/create, and services list/start/stop, leaving obvious gaps for a management tool.