Meilisearch MCP Server

update-displayed-attributes

Modify the displayed attributes settings for a specific Meilisearch index using a JSON value, ensuring tailored search result presentation in the MCP server.

Instructions

Update the displayed attributes setting

Input Schema

NameRequiredDescriptionDefault
indexUidYesUnique identifier of the index
valueYesJSON value for the setting

Input Schema (JSON Schema)

{ "$schema": "http://json-schema.org/draft-07/schema#", "additionalProperties": false, "properties": { "indexUid": { "description": "Unique identifier of the index", "type": "string" }, "value": { "description": "JSON value for the setting", "type": "string" } }, "required": [ "indexUid", "value" ], "type": "object" }
ID: mpo9y8xfor