mindwiki_search
Hybrid keyword + semantic search across your vault. Returns the most relevant pages matching your query.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| query | string | Yes | Natural language search query |
| limit | number | No | Max results to return (default: 10, max: 50) |
| type | string | No | Filter by page type (e.g., "pattern", "concept") |
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..."
}
]
}