Skip to main content
Glama

Meilisearch MCP Server

by devlimelabs

get-documents

Retrieve documents from a Meilisearch index by specifying fields, filters, and pagination. Use this tool to access indexed data efficiently and manage search results programmatically.

Instructions

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" }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/devlimelabs/meilisearch-ts-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server