search_research_tree
Search across research nodes to find specific content, filter by tags, or locate particular node types within hierarchical research structures.
Instructions
Search across all research nodes for specific content, tags, or types
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| query | No | Search query (searches title and content) | |
| tags | No | Filter by tags | |
| type | No | Filter by node type |
Input Schema (JSON Schema)
{
"properties": {
"query": {
"description": "Search query (searches title and content)",
"type": "string"
},
"tags": {
"description": "Filter by tags",
"items": {
"type": "string"
},
"type": "array"
},
"type": {
"description": "Filter by node type",
"type": "string"
}
},
"type": "object"
}