Meilisearch MCP Server

cancel-tasks

Stop Meilisearch tasks by filtering based on index UIDs, task statuses, types, or specific UIDs. Efficiently manage and cancel enqueued or processing tasks for better workflow control.

Instructions

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" }
ID: mpo9y8xfor