Meilisearch MCP Server

get-documents

Get documents from a Meilisearch index

Input Schema

NameRequiredDescriptionDefault
fieldsNoFields to return in the documents
filterNoFilter query to apply
indexUidYesUnique identifier of the index
limitNoMaximum number of documents to return (default: 20)
offsetNoNumber of documents to skip (default: 0)

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "fields": { "description": "Fields to return in the documents", "items": { "type": "string" }, "type": "array" }, "filter": { "description": "Filter query to apply", "type": "string" }, "indexUid": { "description": "Unique identifier of the index", "type": "string" }, "limit": { "description": "Maximum number of documents to return (default: 20)", "maximum": 1000, "minimum": 1, "type": "number" }, "offset": { "description": "Number of documents to skip (default: 0)", "minimum": 0, "type": "number" } }, "required": [ "indexUid" ], "type": "object" }