create_zone
Define and organize memory zones in the Elasticsearch Knowledge Graph for MCP, enabling structured storage and retrieval of detailed information with custom descriptions and names.
Instructions
Create a new memory zone with optional description.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
description | No | Full zone description. Make it very descriptive and detailed. | |
name | Yes | Zone name (cannot be 'default') | |
shortDescription | No | Short description of the zone. |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "Full zone description. Make it very descriptive and detailed.",
"type": "string"
},
"name": {
"description": "Zone name (cannot be 'default')",
"type": "string"
},
"shortDescription": {
"description": "Short description of the zone.",
"type": "string"
}
},
"required": [
"name"
],
"type": "object"
}