ES_URL
: Endpoint for your Elasticsearch instance (e.g., http://localhost:9200
)ES_API_KEY
: Your Elasticsearch API key (e.g., your-api-key
)Tools provided by this Server | Short Description |
---|---|
get_mappings | Get field mappings for a specific Elasticsearch index |
get_shards | Get shard information for all or specific indices |
list_indices | List all available Elasticsearch indices |
search | Perform an Elasticsearch search with the provided query DSL. |
get_mappings
Parameter | Type | Description |
---|---|---|
index | string | Name of the Elasticsearch index to get mappings for |
get_shards
Parameter | Type | Description |
---|---|---|
index | string | optional Optional index name to get shard information for |
list_indices
Parameter | Type | Description |
---|---|---|
indexPattern | string | Index pattern of Elasticsearch indices to list |
search
Parameter | Type | Description |
---|---|---|
index | string | Name of the Elasticsearch index to search |
queryBody | object | Complete Elasticsearch query DSL object (can include query, size, from, sort, etc.) |