search_nodes
Locate nodes in the MemoryMesh knowledge graph by matching names, types, and metadata content against a specific search query for efficient data retrieval.
Instructions
Search for nodes in the knowledge graph based on a query
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | The search query to match against node names, types, and metadata content |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"description": "The search query to match against node names, types, and metadata content",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}