Skip to content

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"
}
}
ParameterTypeRequiredDescription
querystringNo*Semantic search query
node_idstringNo*Specific node to retrieve
tagsstring[]NoFilter by tags
layersstring[]NoFilter by layer: memory, knowledge, wisdom
limitintNoMax results (default: 10)

*One of query or node_id required.

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"
}
}

Returns array of nodes with:

  • id: Node identifier
  • content: The stored content
  • layer: Which layer (memory/knowledge/wisdom)
  • confidence: Confidence score
  • created_at: Timestamp
  • tags: Associated tags
  • relationships: Connected nodes
  • Finding relevant context before a task
  • Retrieving specific stored information
  • Checking what you already know about a topic