Meilisearch MCP Server

get-tasks

Retrieve and filter task details from Meilisearch MCP Server, including task status, type, and associated index UIDs, to monitor and manage task execution.

Instructions

Get information about 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
statusNoStatus of tasks to return
typeNoType of 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" }, "status": { "description": "Status of tasks to return", "enum": [ "enqueued", "processing", "succeeded", "failed", "canceled" ], "type": "string" }, "type": { "description": "Type of tasks to return", "enum": [ "indexCreation", "indexUpdate", "indexDeletion", "documentAddition", "documentUpdate", "documentDeletion", "settingsUpdate", "dumpCreation", "taskCancelation" ], "type": "string" } }, "type": "object" }
ID: mpo9y8xfor