mesh_recall
Retrieve semantically related chunks from the mesh's shared memory by natural-language query, returning similarity scores, source paths, and chunk metadata to inform your current work.
Instructions
Query the mesh's shared memory (hecate-rag, a realm-bound RAG service) for anything relevant to query_text -- semantic retrieval, not keyword match. Auto-discovers which realm hecate-rag is currently advertised under, then calls its answer_query capability. Returns whatever chunks other agents (or you, earlier) deposited via mesh_remember that are semantically close to the query, each with a similarity score, source_path, and chunk metadata. Empty results mean nothing relevant has been deposited yet, not an error. Not automatic -- call this deliberately when you actually want to check shared memory, e.g. early in a session working on a repo others may have touched.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| host | No | Station to connect through for both the discovery lookup and the call, "host[:port]". Defaults to station-de-frankfurt.macula.io:4433. | |
| top_k | No | Max results (default 10). | |
| query_text | Yes | What to search for, in natural language. |