other
Meilisearch CLI for Coding Agents
Use the Meilisearch CLI for coding agents with headless JSON commands, schema discovery, credentials, and permission controls.
7 functions 5 read 2 write API key auth
Meilisearch CLI for Coding Agents
Let coding agents discover schemas and execute integration functions through CLI commands or MCP.
Use this pattern when another coding agent needs exact commands and schema discovery. The Meilisearch CLI uses the same integration registry as the TUI, Lua runtime, and MCP gateway, but returns predictable command output for automation.
Command Shape
# Meilisearch CLI for Coding Agents
kosmokrator integrations:configure meilisearch --set api_key="$MEILISEARCH_API_KEY" --enable --read allow --write ask --json
kosmo integrations:call meilisearch.meilisearch_list_indexes '{"limit":1,"offset":1}' --json Discovery Before Execution
Agents and scripts can inspect Meilisearch docs and schemas before choosing a function.
kosmo integrations:docs meilisearch --json
kosmo integrations:docs meilisearch.meilisearch_list_indexes --json
kosmo integrations:schema meilisearch.meilisearch_list_indexes --json
kosmo integrations:search "Meilisearch" --json
kosmo integrations:list --json Useful Meilisearch CLI Functions
| Function | Type | Parameters | Description |
|---|---|---|---|
meilisearch.meilisearch_list_indexes | Read | limit, offset | List all indexes in the Meilisearch instance. Returns index UIDs, primary keys, and creation dates. |
meilisearch.meilisearch_get_index | Read | uid | Get detailed information about a specific Meilisearch index, including its UID, primary key, and stats. |
meilisearch.meilisearch_create_index | Write | uid, primary_key | Create a new index in Meilisearch. Returns a task object that can be used to track the creation progress. |
meilisearch.meilisearch_search_documents | Read | index_uid, q, limit, offset, filter, sort | Search for documents in a Meilisearch index. Supports full-text search with filters, sorting, and pagination. |
meilisearch.meilisearch_add_documents | Write | index_uid, documents, primary_key | Add or replace documents in a Meilisearch index. Sends an array of document objects to be indexed. Returns a task object to track progress. |
meilisearch.meilisearch_get_document | Read | index_uid, doc_id | Retrieve a single document from a Meilisearch index by its primary key value. |
meilisearch.meilisearch_get_health | Read | none | Check the health status of the Meilisearch instance. Returns whether the server is available and operational. |
Automation Notes
- Use
--jsonfor machine-readable output. - Keep credentials out of argv by using environment variables or stored KosmoKrator configuration.
- Configure read/write policy before unattended runs; use
--forceonly for trusted automation. - Use the MCP gateway instead when the agent needs dynamic tool discovery inside a conversation.