open_nodes
Retrieve and open specific nodes in a knowledge graph by their names using MemoryMesh's MCP server solution.
Instructions
Open specific nodes in the knowledge graph by their names
Input Schema
Name | Required | Description | Default |
---|---|---|---|
names | Yes | An array of node names to retrieve |
Input Schema (JSON Schema)
{
"properties": {
"names": {
"description": "An array of node names to retrieve",
"items": {
"description": "Node name to open",
"type": "string"
},
"type": "array"
}
},
"required": [
"names"
],
"type": "object"
}