Server Configuration
Describes the environment variables required to run the server.
Name | Required | Description | Default |
---|---|---|---|
ES_URL | No | Elasticsearch server URL | http://localhost:9200 |
ES_API_KEY | No | API key for authentication | |
ES_CA_CERT | No | Path to custom CA certificate | |
ES_VERSION | No | Elasticsearch version (8 or 9) | 8 |
ES_PASSWORD | No | Password for authentication | |
ES_USERNAME | No | Username for authentication | |
ES_PATH_PREFIX | No | Path prefix for Elasticsearch | |
ES_SSL_SKIP_VERIFY | No | Skip SSL verification | false |
Schema
Prompts
Interactive templates invoked by user choice
Name | Description |
---|---|
No prompts |
Resources
Contextual data attached and managed by the client
Name | Description |
---|---|
No resources |
Tools
Functions exposed to the LLM to take actions
Name | Description |
---|---|
list_indices | List all available Elasticsearch indices with detailed information |
get_mappings | Get field mappings for a specific Elasticsearch index |
search | Perform an Elasticsearch search with the provided query DSL and highlighting |
get_cluster_health | Get health information about the Elasticsearch cluster |
get_shards | Get shard information for all or specific indices |
add_document | Add a new document to a specific Elasticsearch index |
update_document | Update an existing document in a specific Elasticsearch index |
delete_document | Delete a document from a specific Elasticsearch index |
update_by_query | Update documents in an Elasticsearch index based on a query |
delete_by_query | Delete documents in an Elasticsearch index based on a query |
bulk | Perform multiple document operations (create, update, delete) in a single API call |
create_index | Create a new Elasticsearch index with optional settings and mappings |
delete_index | Delete an Elasticsearch index |
count_documents | Count documents in an index, optionally filtered by a query |
get_templates | Get index templates from Elasticsearch |
get_aliases | Get index aliases from Elasticsearch |