get-task
Retrieve detailed information about a specific task by providing its unique identifier, aiding in tracking and managing task status within the Meilisearch MCP Server.
Instructions
Get information about a specific task
Input Schema
Name | Required | Description | Default |
---|---|---|---|
taskUid | Yes | Unique identifier of the task |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"taskUid": {
"description": "Unique identifier of the task",
"type": "number"
}
},
"required": [
"taskUid"
],
"type": "object"
}