KosmoKrator

data

Meilisearch CLI for AI Agents

Use the Meilisearch CLI from KosmoKrator to call Meilisearch tools headlessly, return JSON, inspect schemas, and automate workflows from coding agents, scripts, and CI.

Meilisearch CLI Setup

Meilisearch can be configured headlessly with `kosmokrator integrations:configure meilisearch`.

Install, configure, and verify
# Install KosmoKrator first if it is not available on PATH.
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash

# Configure and verify this integration.
kosmokrator integrations:configure meilisearch --enable --read allow --write ask --json
kosmokrator integrations:doctor meilisearch --json
kosmokrator integrations:status --json

Credentials

Authentication type: API key api_key. Configure credentials once, then reuse the same stored profile from scripts, coding CLIs, Lua, and MCP.

No credentials are required.

Command Patterns

The generic command is stable across every integration. The provider shortcut is shorter for humans.

Generic CLI call
kosmo integrations:call meilisearch.meilisearch_add_documents '{}' --json
Provider shortcut
kosmo integrations:meilisearch meilisearch_add_documents '{}' --json

Discovery

These commands return structured output for coding agents that need to inspect capabilities before choosing a function.

Discovery commands
kosmo integrations:docs meilisearch --json
kosmo integrations:docs meilisearch.meilisearch_add_documents --json
kosmo integrations:schema meilisearch.meilisearch_add_documents --json
kosmo integrations:search "Meilisearch" --json
kosmo integrations:list --json

Automation Contexts

The same configured command surface works in these environments. The command does not change unless the host wrapper, credentials, or permissions change.

CLI Functions

Every function below can be called headlessly. Commands are highlighted, copyable, and scroll horizontally when payloads are long.

meilisearch.meilisearch_add_documents

Add a list of documents or replace them if they already exist. If you send an already existing document (same id) the whole existing document will be overwritten by the new document. Fields previously in the document not present in the new document are removed. If the provided index does not exist, it will be created. For a partial update of the document see [add or update documents route](/reference/api/documents/add-or-update-documents). > Use the reserved `_geo` object to add geo coordinates to a document. > `_geo` is an object made of `lat` and `lng` field.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_add_documents '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_add_documents '{}' --json

meilisearch.meilisearch_cancel_logs

Call this route to make the engine stop sending logs to the client that opened the `POST /logs/stream` connection.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_cancel_logs '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_cancel_logs '{}' --json

meilisearch.meilisearch_cancel_tasks

Cancel enqueued and/or processing [tasks](https://www.meilisearch.com/docs/learn/async/asynchronous_operations). You must provide at least one filter (e.g. `uids`, `indexUids`, `statuses`) to specify which tasks to cancel.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_cancel_tasks '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_cancel_tasks '{}' --json

meilisearch.meilisearch_chat

Request a chat completion

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_chat '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_chat '{}' --json

meilisearch.meilisearch_clear_all_documents

Permanently delete all documents in the specified index. Settings and index metadata are preserved.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_clear_all_documents '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_clear_all_documents '{}' --json

meilisearch.meilisearch_compact

Trigger a compaction process on the specified index. Compaction reorganizes the index database to reclaim space and improve read performance.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_compact '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_compact '{}' --json

meilisearch.meilisearch_compact_task_queue

Trigger a compaction process on the task queue database and return its size before and after compaction. A successful compaction requires restarting the instance before it can safely resume normal writes.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_compact_task_queue '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_compact_task_queue '{}' --json

meilisearch.meilisearch_create_api_key

Create a new API key with the specified name, description, actions, and index scopes. The key value is returned only once at creation time; store it securely.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_create_api_key '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_create_api_key '{}' --json

meilisearch.meilisearch_create_dump

Trigger a dump creation process. When complete, a dump file is written to the [dump directory](https://www.meilisearch.com/docs/learn/self_hosted/configure_meilisearch_at_launch#dump-directory). The directory is created if it does not exist.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_create_dump '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_create_dump '{}' --json

meilisearch.meilisearch_create_index

Create a new index with an optional [primary key](https://www.meilisearch.com/docs/learn/getting_started/primary_key). If no primary key is provided, Meilisearch will [infer one](https://www.meilisearch.com/docs/learn/getting_started/primary_key#meilisearch-guesses-your-primary-key) from the first batch of documents.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_create_index '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_create_index '{}' --json

meilisearch.meilisearch_create_snapshot

Trigger a snapshot creation process. When complete, a snapshot file is written to the snapshot directory. The directory is created if it does not exist.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_create_snapshot '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_create_snapshot '{}' --json

meilisearch.meilisearch_delete_all

Resets all settings of the index to their default values.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_delete_all '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_delete_all '{}' --json

meilisearch.meilisearch_delete_api_key

Permanently delete the specified API key. The key will no longer be valid for authentication.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_delete_api_key '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_delete_api_key '{}' --json

meilisearch.meilisearch_delete_chat

Delete a chat workspace

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_delete_chat '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_delete_chat '{}' --json

meilisearch.meilisearch_delete_document

Delete a single document by its [primary key](https://www.meilisearch.com/docs/learn/getting_started/primary_key).

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_delete_document '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_delete_document '{}' --json

meilisearch.meilisearch_delete_documents_batch

Delete multiple documents in one request by providing an array of [primary key](https://www.meilisearch.com/docs/learn/getting_started/primary_key) values.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_delete_documents_batch '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_delete_documents_batch '{}' --json

meilisearch.meilisearch_delete_documents_by_filter

Delete all documents in the index that match the given filter expression.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_delete_documents_by_filter '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_delete_documents_by_filter '{}' --json

meilisearch.meilisearch_delete_index

Permanently delete an index and all its documents, settings, and task history.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_delete_index '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_delete_index '{}' --json

meilisearch.meilisearch_delete_rule

Delete a search rule by its unique identifier.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_delete_rule '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_delete_rule '{}' --json

meilisearch.meilisearch_delete_tasks

Permanently delete [tasks](https://docs.meilisearch.com/learn/advanced/asynchronous_operations.html) matching the given filters. You must provide at least one filter (e.g. `uids`, `indexUids`, `statuses`) to specify which tasks to delete.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_delete_tasks '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_delete_tasks '{}' --json

meilisearch.meilisearch_delete_webhook

Permanently remove a webhook by its UUID. The webhook will no longer receive task notifications.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_delete_webhook '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_delete_webhook '{}' --json

meilisearch.meilisearch_deletechat

Resets the `chat` setting to its default value.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_deletechat '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_deletechat '{}' --json

meilisearch.meilisearch_deletedictionary

Resets the `dictionary` setting to its default value.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_deletedictionary '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_deletedictionary '{}' --json

meilisearch.meilisearch_deletedisplayed_attributes

Resets the `displayedAttributes` setting to its default value.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_deletedisplayed_attributes '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_deletedisplayed_attributes '{}' --json

meilisearch.meilisearch_deletedistinct_attribute

Resets the `distinctAttribute` setting to its default value.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_deletedistinct_attribute '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_deletedistinct_attribute '{}' --json

meilisearch.meilisearch_deleteembedders

Resets the `embedders` setting to its default value.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_deleteembedders '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_deleteembedders '{}' --json

meilisearch.meilisearch_deletefacet_search

Resets the `facetSearch` setting to its default value.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_deletefacet_search '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_deletefacet_search '{}' --json

meilisearch.meilisearch_deletefaceting

Resets the `faceting` setting to its default value.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_deletefaceting '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_deletefaceting '{}' --json

meilisearch.meilisearch_deletefilterable_attributes

Resets the `filterableAttributes` setting to its default value.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_deletefilterable_attributes '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_deletefilterable_attributes '{}' --json

meilisearch.meilisearch_deleteforeign_keys

Resets the `foreignKeys` setting to its default value.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_deleteforeign_keys '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_deleteforeign_keys '{}' --json

meilisearch.meilisearch_deletelocalized_attributes

Resets the `localizedAttributes` setting to its default value.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_deletelocalized_attributes '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_deletelocalized_attributes '{}' --json

meilisearch.meilisearch_deletenon_separator_tokens

Resets the `nonSeparatorTokens` setting to its default value.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_deletenon_separator_tokens '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_deletenon_separator_tokens '{}' --json

meilisearch.meilisearch_deletepagination

Resets the `pagination` setting to its default value.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_deletepagination '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_deletepagination '{}' --json

meilisearch.meilisearch_deleteprefix_search

Resets the `prefixSearch` setting to its default value.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_deleteprefix_search '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_deleteprefix_search '{}' --json

meilisearch.meilisearch_deleteproximity_precision

Resets the `proximityPrecision` setting to its default value.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_deleteproximity_precision '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_deleteproximity_precision '{}' --json

meilisearch.meilisearch_deleteranking_rules

Resets the `rankingRules` setting to its default value.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_deleteranking_rules '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_deleteranking_rules '{}' --json

meilisearch.meilisearch_deletesearch_cutoff_ms

Resets the `searchCutoffMs` setting to its default value.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_deletesearch_cutoff_ms '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_deletesearch_cutoff_ms '{}' --json

meilisearch.meilisearch_deletesearchable_attributes

Resets the `searchableAttributes` setting to its default value.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_deletesearchable_attributes '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_deletesearchable_attributes '{}' --json

meilisearch.meilisearch_deleteseparator_tokens

Resets the `separatorTokens` setting to its default value.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_deleteseparator_tokens '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_deleteseparator_tokens '{}' --json

meilisearch.meilisearch_deletesortable_attributes

Resets the `sortableAttributes` setting to its default value.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_deletesortable_attributes '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_deletesortable_attributes '{}' --json

meilisearch.meilisearch_deletestop_words

Resets the `stopWords` setting to its default value.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_deletestop_words '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_deletestop_words '{}' --json

meilisearch.meilisearch_deletesynonyms

Resets the `synonyms` setting to its default value.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_deletesynonyms '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_deletesynonyms '{}' --json

meilisearch.meilisearch_deletetypo_tolerance

Resets the `typoTolerance` setting to its default value.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_deletetypo_tolerance '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_deletetypo_tolerance '{}' --json

meilisearch.meilisearch_documents_by_query_post

Retrieve a set of documents with optional filtering, sorting, and pagination. Use the request body to specify filters, sort order, and which fields to return.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_documents_by_query_post '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_documents_by_query_post '{}' --json

meilisearch.meilisearch_edit_documents_by_function

Use a [RHAI function](https://rhai.rs/book/engine/hello-world.html) to edit one or more documents directly in Meilisearch. The function receives each document and returns the modified document. This feature is experimental and must be enabled through the experimental route.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_edit_documents_by_function '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_edit_documents_by_function '{}' --json

meilisearch.meilisearch_export

Trigger an export that sends documents and settings from this instance to a remote Meilisearch server. Configure the remote URL and optional API key in the request body.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_export '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_export '{}' --json

meilisearch.meilisearch_get_all

Returns all settings of the index. Each setting is returned with its current value or the default if not set.

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_get_all '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_get_all '{}' --json

meilisearch.meilisearch_get_api_key

Retrieve a single API key by its `uid` or by its `key` value.

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_get_api_key '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_get_api_key '{}' --json

meilisearch.meilisearch_get_batch

Meilisearch groups compatible tasks ([asynchronous operations](https://www.meilisearch.com/docs/learn/async/asynchronous_operations)) into batches for efficient processing. For example, multiple document additions to the same index may be batched together. Retrieve a single batch by its unique identifier to monitor its progress and performance.

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_get_batch '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_get_batch '{}' --json

meilisearch.meilisearch_get_batches

Meilisearch groups compatible tasks ([asynchronous operations](https://www.meilisearch.com/docs/learn/async/asynchronous_operations)) into batches for efficient processing. For example, multiple document additions to the same index may be batched together. List batches to monitor their progress and performance. Batches are always returned in descending order of uid. This means that by default, the most recently created batch objects appear first. Batch results are paginated and can be filtered with query parameters.

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_get_batches '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_get_batches '{}' --json

meilisearch.meilisearch_get_chat

Get a chat workspace

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_get_chat '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_get_chat '{}' --json

meilisearch.meilisearch_get_document

Retrieve a single document by its [primary key](https://www.meilisearch.com/docs/learn/getting_started/primary_key) value.

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_get_document '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_get_document '{}' --json

meilisearch.meilisearch_get_documents

Retrieve documents in batches using query parameters for offset, limit, and optional filtering. Suited for browsing or exporting index contents.

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_get_documents '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_get_documents '{}' --json

meilisearch.meilisearch_get_features

Return all experimental features that can be toggled via this API, and whether each one is currently enabled or disabled.

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_get_features '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_get_features '{}' --json

meilisearch.meilisearch_get_health

The health check endpoint enables you to periodically test the health of your Meilisearch instance. Returns a simple status indicating that the server is available.

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_get_health '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_get_health '{}' --json

meilisearch.meilisearch_get_index

Retrieve the metadata of a single index: its uid, [primary key](https://www.meilisearch.com/docs/learn/getting_started/primary_key), and creation/update timestamps.

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_get_index '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_get_index '{}' --json

meilisearch.meilisearch_get_index_stats

Return statistics for a single index: document count, database size, indexing status, and field distribution.

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_get_index_stats '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_get_index_stats '{}' --json

meilisearch.meilisearch_get_logs

Stream logs over HTTP. The format of the logs depends on the configuration specified in the payload. The logs are sent as multi-part, and the stream never stops, so ensure your client can handle a long-lived connection. To stop receiving logs, call the `DELETE /logs/stream` route. Only one client can listen at a time. An error is returned if you call this route while it is already in use by another client.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_get_logs '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_get_logs '{}' --json

meilisearch.meilisearch_get_metrics

Return metrics for the engine in Prometheus format. This is an [experimental feature](https://www.meilisearch.com/docs/learn/experimental/overview) and must be enabled before use.

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_get_metrics '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_get_metrics '{}' --json

meilisearch.meilisearch_get_network

Return the list of Meilisearch instances currently known to this node (self and remotes).

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_get_network '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_get_network '{}' --json

meilisearch.meilisearch_get_rule

Retrieve a single search rule by its unique identifier.

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_get_rule '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_get_rule '{}' --json

meilisearch.meilisearch_get_settings

Get settings of a chat workspace

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_get_settings '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_get_settings '{}' --json

meilisearch.meilisearch_get_stats

Return statistics for the Meilisearch instance and for each index. Includes database size, last update time, document counts, and indexing status per index.

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_get_stats '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_get_stats '{}' --json

meilisearch.meilisearch_get_task

Retrieve a single [task](https://www.meilisearch.com/docs/learn/async/asynchronous_operations) by its uid.

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_get_task '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_get_task '{}' --json

meilisearch.meilisearch_get_task_documents_file

Retrieve the document payload that was sent with this [task](https://www.meilisearch.com/docs/learn/async/asynchronous_operations). Only available for document-related tasks that are enqueued or processing.

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_get_task_documents_file '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_get_task_documents_file '{}' --json

meilisearch.meilisearch_get_tasks

The `/tasks` route returns information about [asynchronous operations](https://docs.meilisearch.com/learn/advanced/asynchronous_operations.html) (indexing, document updates, settings changes, and so on). Tasks are returned in descending order of uid by default, so the most recently created or updated tasks appear first. Results are paginated and can be filtered using query parameters such as `indexUids`, `statuses`, `types`, and date ranges.

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_get_tasks '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_get_tasks '{}' --json

meilisearch.meilisearch_get_version

Return the current Meilisearch version, including the commit SHA and build date.

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_get_version '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_get_version '{}' --json

meilisearch.meilisearch_get_webhook

Retrieve a single webhook by its UUID.

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_get_webhook '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_get_webhook '{}' --json

meilisearch.meilisearch_get_webhooks

Return all webhooks registered on the instance. Each webhook is returned with its URL, optional headers, and UUID (the key value is never returned).

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_get_webhooks '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_get_webhooks '{}' --json

meilisearch.meilisearch_getchat

Returns the current value of the `chat` setting for the index.

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_getchat '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_getchat '{}' --json

meilisearch.meilisearch_getdictionary

Returns the current value of the `dictionary` setting for the index.

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_getdictionary '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_getdictionary '{}' --json

meilisearch.meilisearch_getdisplayed_attributes

Returns the current value of the `displayedAttributes` setting for the index.

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_getdisplayed_attributes '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_getdisplayed_attributes '{}' --json

meilisearch.meilisearch_getdistinct_attribute

Returns the current value of the `distinctAttribute` setting for the index.

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_getdistinct_attribute '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_getdistinct_attribute '{}' --json

meilisearch.meilisearch_getembedders

Returns the current value of the `embedders` setting for the index.

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_getembedders '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_getembedders '{}' --json

meilisearch.meilisearch_getfacet_search

Returns the current value of the `facetSearch` setting for the index.

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_getfacet_search '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_getfacet_search '{}' --json

meilisearch.meilisearch_getfaceting

Returns the current value of the `faceting` setting for the index.

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_getfaceting '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_getfaceting '{}' --json

meilisearch.meilisearch_getfilterable_attributes

Returns the current value of the `filterableAttributes` setting for the index.

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_getfilterable_attributes '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_getfilterable_attributes '{}' --json

meilisearch.meilisearch_getforeign_keys

Returns the current value of the `foreignKeys` setting for the index.

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_getforeign_keys '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_getforeign_keys '{}' --json

meilisearch.meilisearch_getlocalized_attributes

Returns the current value of the `localizedAttributes` setting for the index.

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_getlocalized_attributes '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_getlocalized_attributes '{}' --json

meilisearch.meilisearch_getnon_separator_tokens

Returns the current value of the `nonSeparatorTokens` setting for the index.

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_getnon_separator_tokens '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_getnon_separator_tokens '{}' --json

meilisearch.meilisearch_getpagination

Returns the current value of the `pagination` setting for the index.

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_getpagination '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_getpagination '{}' --json

meilisearch.meilisearch_getprefix_search

Returns the current value of the `prefixSearch` setting for the index.

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_getprefix_search '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_getprefix_search '{}' --json

meilisearch.meilisearch_getproximity_precision

Returns the current value of the `proximityPrecision` setting for the index.

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_getproximity_precision '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_getproximity_precision '{}' --json

meilisearch.meilisearch_getranking_rules

Returns the current value of the `rankingRules` setting for the index.

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_getranking_rules '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_getranking_rules '{}' --json

meilisearch.meilisearch_getsearch_cutoff_ms

Returns the current value of the `searchCutoffMs` setting for the index.

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_getsearch_cutoff_ms '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_getsearch_cutoff_ms '{}' --json

meilisearch.meilisearch_getsearchable_attributes

Returns the current value of the `searchableAttributes` setting for the index.

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_getsearchable_attributes '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_getsearchable_attributes '{}' --json

meilisearch.meilisearch_getseparator_tokens

Returns the current value of the `separatorTokens` setting for the index.

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_getseparator_tokens '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_getseparator_tokens '{}' --json

meilisearch.meilisearch_getsortable_attributes

Returns the current value of the `sortableAttributes` setting for the index.

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_getsortable_attributes '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_getsortable_attributes '{}' --json

meilisearch.meilisearch_getstop_words

Returns the current value of the `stopWords` setting for the index.

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_getstop_words '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_getstop_words '{}' --json

meilisearch.meilisearch_getsynonyms

Returns the current value of the `synonyms` setting for the index.

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_getsynonyms '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_getsynonyms '{}' --json

meilisearch.meilisearch_gettypo_tolerance

Returns the current value of the `typoTolerance` setting for the index.

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_gettypo_tolerance '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_gettypo_tolerance '{}' --json

meilisearch.meilisearch_list_api_keys

Return all API keys configured on the instance. Results are paginated and can be filtered by offset and limit. The key value itself is never returned after creation.

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_list_api_keys '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_list_api_keys '{}' --json

meilisearch.meilisearch_list_indexes

Returns a paginated list of indexes. Use the `offset` and `limit` query parameters to page through results.

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_list_indexes '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_list_indexes '{}' --json

meilisearch.meilisearch_list_rules

Return all search rules configured on the instance.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_list_rules '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_list_rules '{}' --json

meilisearch.meilisearch_list_workspaces

List chat workspaces

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_list_workspaces '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_list_workspaces '{}' --json

meilisearch.meilisearch_multi_search_with_post

Run multiple search queries in a single API request. Each query can target a different index, so you can search across several indexes at once and get one combined response.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_multi_search_with_post '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_multi_search_with_post '{}' --json

meilisearch.meilisearch_patch_api_key

Update the name and description of an API key. Updates are partial: only the fields you send are changed, and any fields not present in the payload remain unchanged.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_patch_api_key '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_patch_api_key '{}' --json

meilisearch.meilisearch_patch_features

Enable or disable experimental features at runtime.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_patch_features '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_patch_features '{}' --json

meilisearch.meilisearch_patch_network

Add or remove remote nodes from the network. Changes apply to the current instance's view of the cluster.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_patch_network '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_patch_network '{}' --json

meilisearch.meilisearch_patch_settings

Update settings of a chat workspace

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_patch_settings '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_patch_settings '{}' --json

meilisearch.meilisearch_patch_webhook

Update the URL or headers of an existing webhook identified by its UUID.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_patch_webhook '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_patch_webhook '{}' --json

meilisearch.meilisearch_patchchat

Updates the `chat` setting for the index. Send the new value in the request body; send null to reset to default.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_patchchat '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_patchchat '{}' --json

meilisearch.meilisearch_patchembedders

Updates the `embedders` setting for the index. Send the new value in the request body; send null to reset to default.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_patchembedders '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_patchembedders '{}' --json

meilisearch.meilisearch_patchfaceting

Updates the `faceting` setting for the index. Send the new value in the request body; send null to reset to default.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_patchfaceting '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_patchfaceting '{}' --json

meilisearch.meilisearch_patchpagination

Updates the `pagination` setting for the index. Send the new value in the request body; send null to reset to default.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_patchpagination '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_patchpagination '{}' --json

meilisearch.meilisearch_patchtypo_tolerance

Updates the `typoTolerance` setting for the index. Send the new value in the request body; send null to reset to default.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_patchtypo_tolerance '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_patchtypo_tolerance '{}' --json

meilisearch.meilisearch_post_index_fields

Returns a paginated list of fields in the index with their metadata: whether they are displayed, searchable, sortable, filterable, distinct, have a custom ranking rule (asc/desc), and for filterable fields the sort order for facet values.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_post_index_fields '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_post_index_fields '{}' --json

meilisearch.meilisearch_post_network_change

Send messages to control the progress of a network topology change task. The route is mostly used internally when sending a PATCH to the network, but is accessible for manual control as well.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_post_network_change '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_post_network_change '{}' --json

meilisearch.meilisearch_post_webhook

Register a new webhook to receive task completion notifications. You can optionally set custom headers (e.g. for authentication) and configure the callback URL.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_post_webhook '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_post_webhook '{}' --json

meilisearch.meilisearch_putdictionary

Updates the `dictionary` setting for the index. Send the new value in the request body; send null to reset to default.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_putdictionary '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_putdictionary '{}' --json

meilisearch.meilisearch_putdisplayed_attributes

Updates the `displayedAttributes` setting for the index. Send the new value in the request body; send null to reset to default.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_putdisplayed_attributes '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_putdisplayed_attributes '{}' --json

meilisearch.meilisearch_putdistinct_attribute

Updates the `distinctAttribute` setting for the index. Send the new value in the request body; send null to reset to default.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_putdistinct_attribute '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_putdistinct_attribute '{}' --json

meilisearch.meilisearch_putfacet_search

Updates the `facetSearch` setting for the index. Send the new value in the request body; send null to reset to default.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_putfacet_search '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_putfacet_search '{}' --json

meilisearch.meilisearch_putfilterable_attributes

Updates the `filterableAttributes` setting for the index. Send the new value in the request body; send null to reset to default.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_putfilterable_attributes '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_putfilterable_attributes '{}' --json

meilisearch.meilisearch_putforeign_keys

Updates the `foreignKeys` setting for the index. Send the new value in the request body; send null to reset to default.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_putforeign_keys '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_putforeign_keys '{}' --json

meilisearch.meilisearch_putlocalized_attributes

Updates the `localizedAttributes` setting for the index. Send the new value in the request body; send null to reset to default.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_putlocalized_attributes '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_putlocalized_attributes '{}' --json

meilisearch.meilisearch_putnon_separator_tokens

Updates the `nonSeparatorTokens` setting for the index. Send the new value in the request body; send null to reset to default.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_putnon_separator_tokens '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_putnon_separator_tokens '{}' --json

meilisearch.meilisearch_putprefix_search

Updates the `prefixSearch` setting for the index. Send the new value in the request body; send null to reset to default.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_putprefix_search '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_putprefix_search '{}' --json

meilisearch.meilisearch_putproximity_precision

Updates the `proximityPrecision` setting for the index. Send the new value in the request body; send null to reset to default.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_putproximity_precision '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_putproximity_precision '{}' --json

meilisearch.meilisearch_putranking_rules

Updates the `rankingRules` setting for the index. Send the new value in the request body; send null to reset to default.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_putranking_rules '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_putranking_rules '{}' --json

meilisearch.meilisearch_putsearch_cutoff_ms

Updates the `searchCutoffMs` setting for the index. Send the new value in the request body; send null to reset to default.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_putsearch_cutoff_ms '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_putsearch_cutoff_ms '{}' --json

meilisearch.meilisearch_putsearchable_attributes

Updates the `searchableAttributes` setting for the index. Send the new value in the request body; send null to reset to default.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_putsearchable_attributes '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_putsearchable_attributes '{}' --json

meilisearch.meilisearch_putseparator_tokens

Updates the `separatorTokens` setting for the index. Send the new value in the request body; send null to reset to default.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_putseparator_tokens '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_putseparator_tokens '{}' --json

meilisearch.meilisearch_putsortable_attributes

Updates the `sortableAttributes` setting for the index. Send the new value in the request body; send null to reset to default.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_putsortable_attributes '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_putsortable_attributes '{}' --json

meilisearch.meilisearch_putstop_words

Updates the `stopWords` setting for the index. Send the new value in the request body; send null to reset to default.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_putstop_words '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_putstop_words '{}' --json

meilisearch.meilisearch_putsynonyms

Updates the `synonyms` setting for the index. Send the new value in the request body; send null to reset to default.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_putsynonyms '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_putsynonyms '{}' --json

meilisearch.meilisearch_reset_settings

Reset the settings of a chat workspace

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_reset_settings '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_reset_settings '{}' --json

meilisearch.meilisearch_search

Search for facet values within a given facet. > Use this to build autocomplete or refinement UIs for facet filters.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_search '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_search '{}' --json

meilisearch.meilisearch_search_documents

Search for documents matching a query in the given index. > Equivalent to the [search with GET route](/reference/api/search/search-with-get) in the Meilisearch API.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_search_documents '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_search_documents '{}' --json

meilisearch.meilisearch_search_with_url_query

Search for documents matching a query in the given index. > Equivalent to the [search with POST route](/reference/api/search/search-with-post) in the Meilisearch API.

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_search_with_url_query '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_search_with_url_query '{}' --json

meilisearch.meilisearch_similar_get

Retrieve documents similar to a reference document identified by its id. > Useful for "more like this" or recommendations.

Read read
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_similar_get '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_similar_get '{}' --json

meilisearch.meilisearch_similar_post

Retrieve documents similar to a reference document identified by its id. > Useful for "more like this" or recommendations.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_similar_post '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_similar_post '{}' --json

meilisearch.meilisearch_swap_indexes

Swap the documents, settings, and task history of two or more indexes. Indexes are swapped in pairs; a single request can include multiple pairs. The operation is atomic: either all swaps succeed or none do. In the task history, every mention of one index uid is replaced by the other and vice versa. Enqueued tasks are left unmodified.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_swap_indexes '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_swap_indexes '{}' --json

meilisearch.meilisearch_update_all

Updates one or more settings for the index. Only the fields sent in the body are changed. Pass null for a setting to reset it to its default. If the index does not exist, it is created. See also: [Configuring index settings on the Cloud](https://www.meilisearch.com/docs/learn/configuration/configuring_index_settings).

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_update_all '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_update_all '{}' --json

meilisearch.meilisearch_update_documents

Add a list of documents or update them if they already exist. If you send an already existing document (same id) the old document will be only partially updated according to the fields of the new document. Thus, any fields not present in the new document are kept and remained unchanged. If the provided index does not exist, it will be created. To completely overwrite a document, see [add or replace documents route](/reference/api/documents/add-or-replace-documents). > Use the reserved `_geo` object to add geo coordinates to a document. > `_geo` is an object made of `lat` and `lng` field.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_update_documents '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_update_documents '{}' --json

meilisearch.meilisearch_update_index

Update the [primary key](https://www.meilisearch.com/docs/learn/getting_started/primary_key) or uid of an index. Returns an error if the index does not exist or if it already contains documents ([primary key](https://www.meilisearch.com/docs/learn/getting_started/primary_key) cannot be changed in that case).

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_update_index '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_update_index '{}' --json

meilisearch.meilisearch_update_or_create_rule

Partially update a search rule by replacing the provided fields. If the rule doesn't exist, it will be created.

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_update_or_create_rule '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_update_or_create_rule '{}' --json

meilisearch.meilisearch_update_stderr_target

Configure at runtime the level of the console logs written to stderr (e.g. debug, info, warn, error).

Write write
Parameters
none
Generic call
kosmo integrations:call meilisearch.meilisearch_update_stderr_target '{}' --json
Shortcut
kosmo integrations:meilisearch meilisearch_update_stderr_target '{}' --json

Function Schemas

Use these parameter tables when building CLI payloads without calling integrations:schema first.

meilisearch.meilisearch_add_documents 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_add_documents --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_cancel_logs 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_cancel_logs --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_cancel_tasks 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_cancel_tasks --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_chat 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_chat --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_clear_all_documents 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_clear_all_documents --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_compact 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_compact --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_compact_task_queue 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_compact_task_queue --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_create_api_key 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_create_api_key --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_create_dump 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_create_dump --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_create_index 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_create_index --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_create_snapshot 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_create_snapshot --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_delete_all 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_delete_all --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_delete_api_key 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_delete_api_key --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_delete_chat 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_delete_chat --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_delete_document 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_delete_document --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_delete_documents_batch 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_delete_documents_batch --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_delete_documents_by_filter 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_delete_documents_by_filter --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_delete_index 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_delete_index --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_delete_rule 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_delete_rule --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_delete_tasks 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_delete_tasks --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_delete_webhook 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_delete_webhook --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_deletechat 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_deletechat --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_deletedictionary 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_deletedictionary --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_deletedisplayed_attributes 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_deletedisplayed_attributes --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_deletedistinct_attribute 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_deletedistinct_attribute --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_deleteembedders 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_deleteembedders --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_deletefaceting 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_deletefaceting --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_deletefilterable_attributes 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_deletefilterable_attributes --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_deleteforeign_keys 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_deleteforeign_keys --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_deletelocalized_attributes 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_deletelocalized_attributes --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_deletenon_separator_tokens 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_deletenon_separator_tokens --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_deletepagination 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_deletepagination --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_deleteproximity_precision 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_deleteproximity_precision --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_deleteranking_rules 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_deleteranking_rules --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_deletesearch_cutoff_ms 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_deletesearch_cutoff_ms --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_deletesearchable_attributes 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_deletesearchable_attributes --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_deleteseparator_tokens 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_deleteseparator_tokens --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_deletesortable_attributes 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_deletesortable_attributes --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_deletestop_words 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_deletestop_words --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_deletesynonyms 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_deletesynonyms --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_deletetypo_tolerance 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_deletetypo_tolerance --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_documents_by_query_post 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_documents_by_query_post --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_edit_documents_by_function 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_edit_documents_by_function --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_export 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_export --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_get_all 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_get_all --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_get_api_key 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_get_api_key --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_get_batch 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_get_batch --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_get_batches 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_get_batches --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_get_chat 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_get_chat --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_get_document 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_get_document --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_get_documents 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_get_documents --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_get_features 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_get_features --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_get_health 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_get_health --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_get_index 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_get_index --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_get_index_stats 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_get_index_stats --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_get_logs 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_get_logs --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_get_metrics 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_get_metrics --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_get_network 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_get_network --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_get_rule 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_get_rule --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_get_settings 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_get_settings --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_get_stats 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_get_stats --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_get_task 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_get_task --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_get_task_documents_file 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_get_task_documents_file --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_get_tasks 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_get_tasks --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_get_version 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_get_version --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_get_webhook 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_get_webhook --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_get_webhooks 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_get_webhooks --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_getchat 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_getchat --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_getdictionary 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_getdictionary --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_getdisplayed_attributes 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_getdisplayed_attributes --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_getdistinct_attribute 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_getdistinct_attribute --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_getembedders 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_getembedders --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_getfaceting 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_getfaceting --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_getfilterable_attributes 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_getfilterable_attributes --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_getforeign_keys 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_getforeign_keys --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_getlocalized_attributes 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_getlocalized_attributes --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_getnon_separator_tokens 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_getnon_separator_tokens --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_getpagination 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_getpagination --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_getproximity_precision 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_getproximity_precision --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_getranking_rules 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_getranking_rules --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_getsearch_cutoff_ms 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_getsearch_cutoff_ms --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_getsearchable_attributes 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_getsearchable_attributes --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_getseparator_tokens 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_getseparator_tokens --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_getsortable_attributes 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_getsortable_attributes --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_getstop_words 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_getstop_words --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_getsynonyms 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_getsynonyms --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_gettypo_tolerance 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_gettypo_tolerance --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_list_api_keys 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_list_api_keys --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_list_indexes 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_list_indexes --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_list_rules 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_list_rules --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_list_workspaces 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_list_workspaces --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_multi_search_with_post 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_multi_search_with_post --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_patch_api_key 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_patch_api_key --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_patch_features 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_patch_features --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_patch_network 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_patch_network --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_patch_settings 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_patch_settings --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_patch_webhook 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_patch_webhook --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_patchchat 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_patchchat --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_patchembedders 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_patchembedders --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_patchfaceting 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_patchfaceting --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_patchpagination 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_patchpagination --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_patchtypo_tolerance 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_patchtypo_tolerance --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_post_index_fields 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_post_index_fields --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_post_network_change 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_post_network_change --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_post_webhook 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_post_webhook --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_putdictionary 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_putdictionary --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_putdisplayed_attributes 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_putdisplayed_attributes --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_putdistinct_attribute 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_putdistinct_attribute --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_putfilterable_attributes 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_putfilterable_attributes --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_putforeign_keys 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_putforeign_keys --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_putlocalized_attributes 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_putlocalized_attributes --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_putnon_separator_tokens 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_putnon_separator_tokens --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_putproximity_precision 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_putproximity_precision --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_putranking_rules 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_putranking_rules --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_putsearch_cutoff_ms 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_putsearch_cutoff_ms --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_putsearchable_attributes 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_putsearchable_attributes --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_putseparator_tokens 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_putseparator_tokens --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_putsortable_attributes 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_putsortable_attributes --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_putstop_words 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_putstop_words --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_putsynonyms 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_putsynonyms --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_reset_settings 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_reset_settings --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_search_documents 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_search_documents --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_search_with_url_query 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_search_with_url_query --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_similar_get 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_similar_get --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_similar_post 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_similar_post --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_swap_indexes 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_swap_indexes --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_update_all 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_update_all --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_update_documents 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_update_documents --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_update_index 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_update_index --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_update_or_create_rule 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_update_or_create_rule --json
ParameterTypeRequiredDescription
No parameters.
meilisearch.meilisearch_update_stderr_target 0 parameters
Schema command
kosmo integrations:schema meilisearch.meilisearch_update_stderr_target --json
ParameterTypeRequiredDescription
No parameters.

Permissions

Headless calls still follow the integration read/write permission policy. Configure read/write defaults with integrations:configure. Add --force only for trusted automation that should bypass that policy.