update-pagination
Modify pagination settings for a specific index in Meilisearch by providing the index UID and JSON value, ensuring customized search result display via the Meilisearch MCP Server.
Instructions
Update the pagination setting
Input Schema
Name | Required | Description | Default |
---|---|---|---|
indexUid | Yes | Unique identifier of the index | |
value | Yes | JSON value for the setting |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"indexUid": {
"description": "Unique identifier of the index",
"type": "string"
},
"value": {
"description": "JSON value for the setting",
"type": "string"
}
},
"required": [
"indexUid",
"value"
],
"type": "object"
}