coolify_documentation
Search Coolify documentation, retrieve topic details, access API references, or find troubleshooting guides for self-hosted instances. Simplify app deployment and management with integrated support.
Instructions
Access Coolify documentation: search docs, get topic info, API reference, or troubleshooting guides
Input Schema
Name | Required | Description | Default |
---|---|---|---|
action | Yes | Action to perform: search docs, get topic docs, get API reference, get troubleshooting, list topics, or get API reference | |
category | No | Optional category filter (api, guide, configuration, troubleshooting) | |
limit | No | Maximum number of results to return | |
query | Yes | Search query, topic name, API endpoint, or issue description |
Input Schema (JSON Schema)
{
"properties": {
"action": {
"description": "Action to perform: search docs, get topic docs, get API reference, get troubleshooting, list topics, or get API reference",
"enum": [
"search",
"get",
"api",
"troubleshoot",
"topics",
"api_reference"
],
"type": "string"
},
"category": {
"description": "Optional category filter (api, guide, configuration, troubleshooting)",
"type": "string"
},
"limit": {
"default": 10,
"description": "Maximum number of results to return",
"maximum": 50,
"minimum": 1,
"type": "number"
},
"query": {
"description": "Search query, topic name, API endpoint, or issue description",
"type": "string"
}
},
"required": [
"action",
"query"
],
"type": "object"
}