start_application
Start a deployed application in Coolify by providing its UUID to activate the service and make it accessible.
Instructions
Start an application
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| uuid | Yes | Application UUID |
Implementation Reference
- src/tools/handlers.ts:213-215 (handler)Handler implementation for the 'start_application' tool. Validates the 'uuid' parameter and sends a GET request to the Coolify API endpoint `/applications/{uuid}/start` to start the specified application.case 'start_application': requireParam(args, 'uuid'); return client.get(`/applications/${args.uuid}/start`);
- src/tools/definitions.ts:414-421 (schema)Schema definition for the 'start_application' tool, including name, description, and input schema requiring the 'uuid' of the application.name: 'start_application', description: 'Start an application', inputSchema: { type: 'object', properties: { uuid: { type: 'string', description: 'Application UUID' } }, required: ['uuid'] } },