search_nodes
Search for entities, types, and observation content in a knowledge graph stored in Obsidian Memory MCP. Use a query to retrieve relevant nodes for enhanced knowledge graph navigation and analysis.
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 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"
}