search_nodes
Find nodes in a knowledge graph memory by matching queries against entity names, types, and observation content. Ideal for retrieving relevant data in a scalable, semantic-aware system.
Instructions
Search for nodes in your Memento MCP knowledge graph memory based on a query
Input Schema
Name | Required | Description | Default |
---|---|---|---|
query | Yes | The search query to match against entity names, types, and observation content |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"description": "The search query to match against entity names, types, and observation content",
"type": "string"
}
},
"required": [
"query"
],
"type": "object"
}