recall
Search across all layers or retrieve specific nodes by ID.
Search:
{ "tool": "recall", "arguments": { "query": "authentication flow" }}By ID:
{ "tool": "recall", "arguments": { "node_id": "node_abc123" }}Parameters
Section titled “Parameters”| Parameter | Type | Required | Description |
|---|---|---|---|
query | string | No* | Semantic search query |
node_id | string | No* | Specific node to retrieve |
tags | string[] | No | Filter by tags |
layers | string[] | No | Filter by layer: memory, knowledge, wisdom |
limit | int | No | Max results (default: 10) |
*One of query or node_id required.
Examples
Section titled “Examples”Semantic search:
{ "tool": "recall", "arguments": { "query": "API rate limiting", "limit": 5 }}Filtered search:
{ "tool": "recall", "arguments": { "query": "user preferences", "layers": ["memory"], "tags": ["preferences"] }}Retrieve specific node:
{ "tool": "recall", "arguments": { "node_id": "node_abc123" }}Response Format
Section titled “Response Format”Returns array of nodes with:
id: Node identifiercontent: The stored contentlayer: Which layer (memory/knowledge/wisdom)confidence: Confidence scorecreated_at: Timestamptags: Associated tagsrelationships: Connected nodes
When to Use
Section titled “When to Use”- Finding relevant context before a task
- Retrieving specific stored information
- Checking what you already know about a topic