mindwiki_search

Hybrid keyword + semantic search across your vault. Returns the most relevant pages matching your query.

Parameters

ParameterTypeRequiredDescription
querystringYesNatural language search query
limitnumberNoMax results to return (default: 10, max: 50)
typestringNoFilter 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..."
    }
  ]
}