stop_service
Gracefully shut down a running service container in Coolify by providing its UUID. Use this tool to stop services managed through the Coolify platform.
Instructions
Stop a running service. This will gracefully shut down the service container.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
uuid | Yes | UUID of the service to stop. Get this from list_services. |
Input Schema (JSON Schema)
{
"properties": {
"uuid": {
"description": "UUID of the service to stop. Get this from list_services.",
"pattern": "^[a-zA-Z0-9]+$",
"type": "string"
}
},
"required": [
"uuid"
],
"type": "object"
}