← Tools Reference

Elasticsearch

Elasticsearch integration (Data, Developer Tools). Imported from open-connector.

API key3 tools{base_url}
GET
elasticsearch_ping_cluster
Check whether the Elasticsearch cluster is reachable and return its health status.

/_cluster/health

GET
elasticsearch_list_indices
List Elasticsearch indices visible to the connected user.

/_cat/indices

5 parameters
ParamTypeRequiredDescription
indexstringoptionalA comma-separated list of index names or wildcard expressions to limit the retu…
healthstringoptionalFilter indices by health status.
sortBystringoptionalA comma-separated list of cat indices columns to sort by, such as index or docs…
expandWildcardsstringoptionalThe comma-separated wildcard expansion modes for index patterns.
includePrimaryShardsOnlybooleanoptionalWhether to return only primary shard information.
POST
elasticsearch_query_index
Search an Elasticsearch index with text queries, filters, pagination, and sorting.

/{indexName}/_search

10 parameters
ParamTypeRequiredDescription
indexNamestringrequiredThe Elasticsearch index name.
querystringoptionalA free-text query_string query.
fromintegeroptionalThe starting offset for search pagination.
sizeintegeroptionalThe number of search results to return, capped at 1000.
fieldsarrayoptionalSpecific document source fields to return.
highlightbooleanoptionalWhether to request highlights for the search query.
sortarrayoptionalSort order for search results.
termFiltersarrayoptionalExact term filters for specific field values.
rangeFiltersarrayoptionalRange filters for fields.
timeFilterobjectoptionalA time-based range filter for timestamp fields.