search_nodes
Locate nodes in a knowledge graph by querying entity names, types, or observation content to enhance interaction and memory retention in the MCP system.
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"
}