Meilisearch MCP Server

cancel-tasks

Cancel tasks based on provided filters

Input Schema

NameRequiredDescriptionDefault
indexUidsNoUIDs of the indexes on which tasks to cancel were performed
statusesNoStatuses of tasks to cancel
typesNoTypes of tasks to cancel
uidsNoUIDs of the tasks to cancel

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "indexUids": { "description": "UIDs of the indexes on which tasks to cancel were performed", "items": { "type": "string" }, "type": "array" }, "statuses": { "description": "Statuses of tasks to cancel", "items": { "enum": [ "enqueued", "processing" ], "type": "string" }, "type": "array" }, "types": { "description": "Types of tasks to cancel", "items": { "enum": [ "indexCreation", "indexUpdate", "indexDeletion", "documentAddition", "documentUpdate", "documentDeletion", "settingsUpdate", "dumpCreation", "taskCancelation" ], "type": "string" }, "type": "array" }, "uids": { "description": "UIDs of the tasks to cancel", "items": { "type": "number" }, "type": "array" } }, "type": "object" }