Meilisearch MCP Server

create-index

Create a new Meilisearch index

Input Schema

NameRequiredDescriptionDefault
indexUidYesUnique identifier for the new index
primaryKeyNoPrimary key for the index

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "indexUid": { "description": "Unique identifier for the new index", "type": "string" }, "primaryKey": { "description": "Primary key for the index", "type": "string" } }, "required": [ "indexUid" ], "type": "object" }