Search Dokploy API
searchSearch the Dokploy API catalog to retrieve procedure names, parameters, schemas, and response hints using text, tags, or recommendations.
Instructions
Search the Dokploy API catalog. IMPORTANT: Do NOT wrap code in a function -- catalog is already a global. Write bare code: catalog.searchText("deploy") or catalog.recommend("safe database password rotation") or catalog.getByTag("application") or catalog.get("application.one"). Common patterns: catalog.recommend("tail project logs across environments") -> helper-first workflow suggestions; catalog.get("application.one") -> application detail fields plus optional shaping params; catalog.get("application.update") -> build/runtime/resource tuning fields such as byte-based memory limits; catalog.get("application.many") -> batched application reads; catalog.get("project.overview") -> compact project state view; catalog.get("deployment.all") -> deployment history entries. Returns procedure names, parameters, HTTP methods, schemas, and response hints for key endpoints.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| code | Yes | JavaScript code. `catalog` is a global -- do NOT wrap in a function. Examples: `catalog.searchText("application deploy")` | `catalog.recommend("safe database password rotation")` | `catalog.getByTag("compose")` | `catalog.get("application.one")` | `catalog.get("application.update")`. Methods: searchText(query), recommend(query), get(procedure), getByTag(tag), endpoints, byTag. | |
| profile | No | Optional Dokploy profile name to validate before returning catalog results. |