start-application
Initiate a specific application by its UUID to make it available for use. Supports application management operations on the Coolify MCP Server via the Coolify API.
Instructions
Start a specific application using its UUID. This initiates the application and makes it available for use.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
uuid | Yes | Resource UUID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"uuid": {
"description": "Resource UUID",
"type": "string"
}
},
"required": [
"uuid"
],
"type": "object"
}