IvedaAI: Module
ivedaai_moduleManage IvedaAI modules with operations to install, uninstall, reload, fetch, and list modules via API endpoints. Handles local file uploads and query parameters for module search.
Instructions
IvedaAI API — Module operations. Response JSON: "status" is the HTTP status code; "truncated"/"timedOut" flag a cut-off response.
DELETE /api/modules — Uninstall module query: moduleId*:string
GET /api/modules — Find modules query: offset?:integer, page?:any, pageNumber?:integer, pageSize?:integer, paged?:boolean, size?:any, sort?:any, sort.sorted?:boolean, sort.unsorted?:boolean, unpaged?:boolean, name?:string, vendor?:string, version?:string
POST /api/modules — Install module file: provide as {path, filename?, contentType?} — local file to upload as "module"
PUT /api/modules — Reload module path: moduleId*:string
GET /api/modules/{moduleId} — Get module path: moduleId*:string
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| body | No | JSON request body, or form field values when uploading a file. | |
| file | No | Local file to upload, for operations that accept a file. | |
| path | No | Path parameters, e.g. { "cameraId": 12 } | |
| query | No | Query string parameters for this operation. | |
| operation | Yes | Which API operation to call, from the list in this tool's description. |