Meilisearch MCP Server

delete-tasks

Delete tasks based on provided filters

Input Schema

NameRequiredDescriptionDefault
beforeFinishedAtNoDelete tasks that finished processing before this date (ISO 8601 format)
beforeStartedAtNoDelete tasks that started processing before this date (ISO 8601 format)
beforeUidNoDelete tasks whose uid is before this value
canceledByNoUIDs of the tasks that canceled tasks to delete
indexUidsNoUIDs of the indexes on which tasks to delete were performed
statusesNoStatuses of tasks to delete
typesNoTypes of tasks to delete
uidsNoUIDs of the tasks to delete

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "beforeFinishedAt": { "description": "Delete tasks that finished processing before this date (ISO 8601 format)", "type": "string" }, "beforeStartedAt": { "description": "Delete tasks that started processing before this date (ISO 8601 format)", "type": "string" }, "beforeUid": { "description": "Delete tasks whose uid is before this value", "type": "number" }, "canceledBy": { "description": "UIDs of the tasks that canceled tasks to delete", "items": { "type": "number" }, "type": "array" }, "indexUids": { "description": "UIDs of the indexes on which tasks to delete were performed", "items": { "type": "string" }, "type": "array" }, "statuses": { "description": "Statuses of tasks to delete", "items": { "enum": [ "succeeded", "failed", "canceled" ], "type": "string" }, "type": "array" }, "types": { "description": "Types of tasks to delete", "items": { "enum": [ "indexCreation", "indexUpdate", "indexDeletion", "documentAddition", "documentUpdate", "documentDeletion", "settingsUpdate", "dumpCreation", "taskCancelation" ], "type": "string" }, "type": "array" }, "uids": { "description": "UIDs of the tasks to delete", "items": { "type": "number" }, "type": "array" } }, "type": "object" }