mindwiki_similar

Find pages semantically similar to a given page. Uses vector embeddings to find conceptually related content.

Parameters

ParameterTypeRequiredDescription
pathstringYesPath of the reference page
limitnumberNoMax results (default: 5)

Example Request

json
{
  "tool": "mindwiki_similar",
  "arguments": {
    "path": "patterns/feedback-loops.md",
    "limit": 3
  }
}

Example Response

json
{
  "similar": [
    { "path": "patterns/emergence.md", "title": "Emergence", "similarity": 0.89 },
    { "path": "research/complex-systems.md", "title": "Complex Systems", "similarity": 0.84 },
    { "path": "patterns/resonance.md", "title": "Resonance", "similarity": 0.78 }
  ]
}