put_alias
Create or update an alias for a specific index in Elasticsearch clusters using the MCP server, enabling efficient index management with targeted configurations.
Instructions
Create or update an alias for a specific index.
Args:
index: Name of the index
name: Name of the alias
body: Alias configuration
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | Yes | ||
index | Yes | ||
name | Yes |
Input Schema (JSON Schema)
{
"properties": {
"body": {
"additionalProperties": true,
"title": "Body",
"type": "object"
},
"index": {
"title": "Index",
"type": "string"
},
"name": {
"title": "Name",
"type": "string"
}
},
"required": [
"index",
"name",
"body"
],
"type": "object"
}