Meilisearch MCP Server

list-indexes

Retrieve and manage all indexes in a Meilisearch instance. Use this tool to list indexes with options to limit or offset results for efficient index management.

Instructions

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" }
ID: mpo9y8xfor