Skip to main content
Glama

recall

Search project memories by keyword or plain language, then follow related associations to find the most relevant notes before starting a task.

Instructions

Search memories by keyword and semantic similarity, then follow the usage graph to related memories, most relevant first.

Ask in plain language, the way you would ask a colleague ("how do we run the integration tests?", "what did the user decide about the auth library?") - a memory matching some of the words is a hit, and the best match ranks first. Recall BEFORE starting a task, not only when stuck: the index you were given at session start is titles only. Memories from the current project rank slightly ahead of equally-good ones from elsewhere.

Each hit carries {id, type, title, body, tags, updated_at} and a via receipt explaining why it surfaced (a direct match, or the edge it was reached through). Use updated_at to judge staleness (an old fact may no longer hold; verify before relying on it) and id to cite what you update via remember/link.

body is an EXCERPT centered on your query, not the whole memory. When a memory was longer than the excerpt, the hit also carries truncated: true and body_chars (the full length). To read one in full, call recall(id=N) - that returns just that memory, whole.

Args: query: free text; punctuation is safe. May be omitted if tags is given. type: optional filter ("user"/"feedback"/"project"/"reference"). limit: max results (default 20). budget: how far to follow associations (0 = direct matches only). session: optional id grouping related recalls so they prime each other. tags: optional comma-separated tags; exact-match filter (a memory must carry every listed tag). Combine with query to filter its ranked hits, or use alone (query omitted) to list every current memory with those tags, newest first, deterministic rather than ranked - raise limit to fetch beyond the default page size. id: fetch this one memory in full instead of searching. Use it after a search returns a truncated hit you want to read completely. full: return complete bodies for every hit instead of excerpts. Costs the whole payload - prefer id= for the one memory you actually need.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idNo
fullNo
tagsNo
typeNo
limitNo
queryNo
budgetNo
sessionNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.6.0

TDQS

A4.7/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden, and it delivers: result ranking, project bias, the "via" receipt, excerpt behavior with truncated/body_chars, deterministic newest-first listing for tag-only queries, staleness guidance via updated_at, and full/complete-body modes. This is unusually transparent about how the tool behaves beyond its inputs.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is front-loaded with the core purpose and then organized into usage, return-shape, and Args sections. It is longer than average, but the length is justified by missing schema descriptions. There is minor redundancy between the prose explanation of id/full and the Args block, so it is not maximally lean, but every section earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For an 8-parameter tool with no annotations, no output schema, and no schema descriptions, this is remarkably complete. It explains all parameters, the shape of each hit, what truncated means, how to fetch full bodies, staleness handling, and how to use tags versus query. An agent has everything needed to select and invoke the tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, but the description's Args section documents all 8 parameters with meaningful behavior: query is free text and optional with tags; type filter values; limit default; budget controls association depth; session groups recalls; tags are exact-match and can be used alone; id fetches one full memory; full returns complete bodies and notes the payload cost. This fully compensates for the empty schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The first sentence states a specific verb and resource: "Search memories by keyword and semantic similarity, then follow the usage graph to related memories, most relevant first." It also covers the secondary fetch mode via recall(id=N), and the role as the read/search tool is clearly distinct from sibling tools remember, link, and forget.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives strong timing guidance: "Recall BEFORE starting a task, not only when stuck" and explains why (the session index is titles only). It also gives clear internal alternatives such as "To read one in full, call recall(id=N)" and "prefer id= for the one memory you actually need." It does not explicitly state when to choose remember/link/forget over recall, only mentioning them as update targets, so some sibling routing is left implicit.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Deploy Server

Other Tools