add-documents
Add documents to a Meilisearch index using the MCP server. Specify indexUid and documents array to manage data efficiently for search and retrieval.
Instructions
Add documents to an index
Input Schema
Name | Required | Description | Default |
---|---|---|---|
documents | Yes | ||
indexUid | Yes | ||
primaryKey | No |
Input Schema (JSON Schema)
{
"additionalProperties": false,
"properties": {
"documents": {
"items": {
"additionalProperties": true,
"type": "object"
},
"type": "array"
},
"indexUid": {
"type": "string"
},
"primaryKey": {
"type": "string"
}
},
"required": [
"indexUid",
"documents"
],
"type": "object"
}