Meilisearch MCP Server

update-index

Update a Meilisearch index (currently only supports updating the primary key)

Input Schema

NameRequiredDescriptionDefault
indexUidYesUnique identifier of the index
primaryKeyYesNew primary key for 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" }, "primaryKey": { "description": "New primary key for the index", "type": "string" } }, "required": [ "indexUid", "primaryKey" ], "type": "object" }