Meilisearch MCP Server

list-indexes

List all indexes in the Meilisearch instance

Input Schema

NameRequiredDescriptionDefault
limitNoMaximum number of indexes to return
offsetNoNumber of indexes to skip

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "limit": { "description": "Maximum number of indexes to return", "maximum": 100, "minimum": 1, "type": "number" }, "offset": { "description": "Number of indexes to skip", "minimum": 0, "type": "number" } }, "type": "object" }