mindwiki_ask

Ask a question and get an answer synthesized from vault knowledge. Uses RAG (Retrieval-Augmented Generation) to find relevant pages and compose an answer.

Parameters

ParameterTypeRequiredDescription
questionstringYesNatural language question
max_sourcesnumberNoMax pages to use as context (default: 5)

Example Request

json
{
  "tool": "mindwiki_ask",
  "arguments": {
    "question": "What patterns connect physics to my daily routines?"
  }
}

Example Response

json
{
  "answer": "Your vault reveals two key connections: feedback loops appear in both complex systems (phase transitions) and your morning routine (compounding small wins). The concept of resonance also bridges physics and your journaling practice...",
  "sources": [
    "patterns/feedback-loops.md",
    "research/complex-systems.md",
    "systems/morning-routine.md"
  ]
}