Meilisearch MCP Server

multi-search

Perform multiple searches in one request

Input Schema

NameRequiredDescriptionDefault
searchesYesJSON array of search queries, each with indexUid and q fields

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "searches": { "description": "JSON array of search queries, each with indexUid and q fields", "type": "string" } }, "required": [ "searches" ], "type": "object" }