reset-distinct-attribute
Revert the distinct attribute setting to its default value for a specified index in Meilisearch using the MCP Server, streamlining search configuration management.
Instructions
Reset the distinct attribute setting to its default value
Input Schema
Name | Required | Description | Default |
---|---|---|---|
indexUid | Yes | Unique identifier of the index |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"indexUid": {
"description": "Unique identifier of the index",
"type": "string"
}
},
"required": [
"indexUid"
],
"type": "object"
}