search

Read-only search across your vault for ChatGPT-compatible retrieval flows. ChatGPT and other generic MCP clients look for this tool name specifically; it returns the most relevant pages for a query.

For richer search with limit and (in the future) typed results, use mindwiki_search instead.

Scope: read

Parameters

ParameterTypeRequiredDescription
querystringYesSearch query

Example Request

json
{
  "tool": "search",
  "arguments": {
    "query": "feedback loops"
  }
}

Example Response

json
{
  "results": [
    {
      "id": "patterns/feedback-loops.md",
      "title": "Feedback Loops",
      "snippet": "A self-reinforcing cycle..."
    },
    {
      "id": "research/complex-systems.md",
      "title": "Complex Systems",
      "snippet": "Positive feedback drives..."
    }
  ]
}

The id field is the page path. Use it as input to fetch to read a full page.