Coolify MCP Server

update-application

Update the settings of a specific application, such as health check configurations. This allows you to modify the application's behavior and monitoring settings.

Input Schema

NameRequiredDescriptionDefault
settingsYes
uuidYesResource UUID

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "settings": { "additionalProperties": false, "properties": { "description": { "type": "string" }, "domains": { "type": "string" }, "health_check_enabled": { "type": "boolean" }, "health_check_host": { "type": [ "string", "null" ] }, "health_check_interval": { "type": "number" }, "health_check_method": { "type": "string" }, "health_check_path": { "type": "string" }, "health_check_port": { "type": [ "string", "null" ] }, "health_check_response_text": { "type": [ "string", "null" ] }, "health_check_retries": { "type": "number" }, "health_check_return_code": { "type": "number" }, "health_check_scheme": { "type": "string" }, "health_check_start_period": { "type": "number" }, "health_check_timeout": { "type": "number" }, "name": { "type": "string" } }, "type": "object" }, "uuid": { "description": "Resource UUID", "type": "string" } }, "required": [ "uuid", "settings" ], "type": "object" }