list_indices
Retrieve all available Elasticsearch indices by specifying an index pattern using the MCP server. Simplify database queries and manage indices effectively.
Instructions
List all available Elasticsearch indices
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| indexPattern | Yes | Index pattern of Elasticsearch indices to list |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"indexPattern": {
"description": "Index pattern of Elasticsearch indices to list",
"minLength": 1,
"type": "string"
}
},
"required": [
"indexPattern"
],
"type": "object"
}