services
Manage and control Coolify MCP Server deployments by performing operations like listing, creating, updating, and deleting services, along with handling environment variables and service types.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | No | JSON request body | |
env_id | No | Environment variable UUID | |
id | No | Service 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 UUID",
"type": "string"
},
"id": {
"description": "Service UUID",
"type": "string"
},
"operation": {
"description": "Operation to perform",
"enum": [
"list",
"get",
"create",
"update",
"delete",
"start",
"stop",
"restart",
"list_envs",
"create_env",
"update_env",
"update_envs_bulk",
"delete_env",
"get_service_types"
],
"type": "string"
}
},
"required": [
"operation"
],
"type": "object"
}