deployments
Manage application deployments on Coolify MCP Server by listing, retrieving, or deploying configurations via specified operations and UUIDs for precise control over services and infrastructure.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
applicationUuid | No | Application UUID (for list_by_app operation) | |
id | No | Deployment UUID | |
operation | Yes | Operation to perform | |
query | No | JSON query parameters for deploy operation |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"applicationUuid": {
"description": "Application UUID (for list_by_app operation)",
"type": "string"
},
"id": {
"description": "Deployment UUID",
"type": "string"
},
"operation": {
"description": "Operation to perform",
"enum": [
"list",
"get",
"deploy",
"list_by_app"
],
"type": "string"
},
"query": {
"description": "JSON query parameters for deploy operation",
"type": "string"
}
},
"required": [
"operation"
],
"type": "object"
}