open_nodes
Retrieve specific entities by name from the Memento MCP knowledge graph memory, enabling efficient access to structured, semantically rich data for advanced analysis and decision-making.
Instructions
Open specific nodes in your Memento MCP knowledge graph memory by their names
Input Schema
Name | Required | Description | Default |
---|---|---|---|
names | Yes | An array of entity names to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"names": {
"description": "An array of entity names to retrieve",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"names"
],
"type": "object"
}