private-keys
Manage private keys for Coolify MCP Server by listing, creating, updating, or deleting them using structured JSON operations for secure deployment control.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | No | JSON request body | |
id | No | Private Key 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"
},
"id": {
"description": "Private Key UUID",
"type": "string"
},
"operation": {
"description": "Operation to perform",
"enum": [
"list",
"get",
"create",
"update",
"delete"
],
"type": "string"
}
},
"required": [
"operation"
],
"type": "object"
}