Meilisearch MCP Server

list-tasks

List tasks with optional filtering

Input Schema

NameRequiredDescriptionDefault
fromNoTask uid from which to start fetching
indexUidsNoUIDs of the indexes on which tasks were performed
limitNoMaximum number of tasks to return
statusesNoStatuses of tasks to return
typesNoTypes of tasks to return
uidsNoUIDs of specific tasks to return

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "from": { "description": "Task uid from which to start fetching", "minimum": 0, "type": "number" }, "indexUids": { "description": "UIDs of the indexes on which tasks were performed", "items": { "type": "string" }, "type": "array" }, "limit": { "description": "Maximum number of tasks to return", "minimum": 0, "type": "number" }, "statuses": { "description": "Statuses of tasks to return", "items": { "enum": [ "enqueued", "processing", "succeeded", "failed", "canceled" ], "type": "string" }, "type": "array" }, "types": { "description": "Types of tasks to return", "items": { "enum": [ "indexCreation", "indexUpdate", "indexDeletion", "documentAddition", "documentUpdate", "documentDeletion", "settingsUpdate", "dumpCreation", "taskCancelation" ], "type": "string" }, "type": "array" }, "uids": { "description": "UIDs of specific tasks to return", "items": { "type": "number" }, "type": "array" } }, "type": "object" }