Meilisearch MCP Server

swap-indexes

Swap two or more indexes in Meilisearch

Input Schema

NameRequiredDescriptionDefault
indexesYesJSON array of index pairs to swap, e.g. [["movies", "movies_new"]]

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "indexes": { "description": "JSON array of index pairs to swap, e.g. [[\"movies\", \"movies_new\"]]", "type": "string" } }, "required": [ "indexes" ], "type": "object" }