open_nodes
Expand specified entities to retrieve full details, including observations and relations, using a local, offline MCP memory server for persistent storage and retrieval.
Instructions
Expand specified entities: return their full details including observations and relations.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
names | Yes | Names of entities to expand. |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"names": {
"description": "Names of entities to expand.",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"names"
],
"type": "object"
}