applications
Manage and deploy applications on Coolify MCP Server by performing operations like creating, updating, starting, stopping, and monitoring environments and services via CLI or programmatically.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | No | JSON request body | |
env_id | No | Environment variable ID | |
id | No | Application UUID | |
operation | Yes | Operation to perform |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"body": {
"description": "JSON request body",
"type": "string"
},
"env_id": {
"description": "Environment variable ID",
"type": "string"
},
"id": {
"description": "Application UUID",
"type": "string"
},
"operation": {
"description": "Operation to perform",
"enum": [
"list",
"get",
"create_public",
"create_private_gh",
"create_private_key",
"create_dockerfile",
"create_docker_image",
"create_docker_compose",
"update",
"delete",
"get_logs",
"start",
"stop",
"restart",
"list_envs",
"create_env",
"update_env",
"update_envs_bulk",
"delete_env"
],
"type": "string"
}
},
"required": [
"operation"
],
"type": "object"
}