mindwiki_search
Hybrid keyword + semantic search across your vault. Returns the most relevant pages for a query.
Scope: read
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
query | string | Yes | Search query |
limit | number | No | Max results (default: 10) |
Example Request
json
{
"tool": "mindwiki_search",
"arguments": {
"query": "feedback loops in complex systems",
"limit": 5
}
}Example Response
json
{
"results": [
{
"path": "patterns/feedback-loops.md",
"title": "Feedback Loops",
"score": 0.94,
"snippet": "A self-reinforcing cycle where the output..."
},
{
"path": "research/complex-systems.md",
"title": "Complex Systems",
"score": 0.87,
"snippet": "Positive feedback drives phase transitions..."
}
]
}Scores are between 0 and 1. Higher means more relevant. Use mindwiki_read_page to fetch the full content of any result.