coolify_application_management
Manage applications on Coolify MCP Server: deploy, get info, list, check status, start, stop, restart, or create applications with ease using specified Git repositories and branches.
Instructions
Comprehensive application management: deploy, get info, list, check status, start/stop/restart, or create applications
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | Yes | Action to perform on applications | |
applicationId | No | Application ID (required for most actions except list/create) | |
branch | No | Git branch to deploy | |
build_pack | No | Build pack to use (for create action) | |
description | No | Application description (for create action) | |
force | No | Force deployment even if another is in progress | |
git_branch | No | Git branch (for create action) | |
git_repository | No | Git repository URL (for create action) | |
name | No | Application name (for create action) | |
serverId | No | Filter applications by server ID | |
status | No | Filter by application status |
Input Schema (JSON Schema)
{
"properties": {
"action": {
"description": "Action to perform on applications",
"enum": [
"deploy",
"get",
"list",
"status",
"start",
"stop",
"restart",
"create"
],
"type": "string"
},
"applicationId": {
"description": "Application ID (required for most actions except list/create)",
"type": "string"
},
"branch": {
"description": "Git branch to deploy",
"type": "string"
},
"build_pack": {
"description": "Build pack to use (for create action)",
"type": "string"
},
"description": {
"description": "Application description (for create action)",
"type": "string"
},
"force": {
"default": false,
"description": "Force deployment even if another is in progress",
"type": "boolean"
},
"git_branch": {
"description": "Git branch (for create action)",
"type": "string"
},
"git_repository": {
"description": "Git repository URL (for create action)",
"type": "string"
},
"name": {
"description": "Application name (for create action)",
"type": "string"
},
"serverId": {
"description": "Filter applications by server ID",
"type": "string"
},
"status": {
"description": "Filter by application status",
"enum": [
"running",
"stopped",
"building",
"error"
],
"type": "string"
}
},
"required": [
"action"
],
"type": "object"
}