delete-index
Remove a specific index from Meilisearch by providing its unique identifier, ensuring efficient index management and organization within the Meilisearch MCP Server.
Instructions
Delete a Meilisearch index
Input Schema
Name | Required | Description | Default |
---|---|---|---|
indexUid | Yes | Unique identifier of the index to delete |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"indexUid": {
"description": "Unique identifier of the index to delete",
"type": "string"
}
},
"required": [
"indexUid"
],
"type": "object"
}