Skip to main content
Glama

recall

Perform semantic search over stored memories to recover context from prior sessions, enabling continuity at session start.

Instructions

Semantic search across all stored memories. Use this at the start of a session to recover context from prior sessions.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tagsNoFilter by tags (any-match).
limitNo
queryYesNatural language query.
projectNoRestrict to a project.
min_importanceNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.5/5.0
Behavior3/5

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

With no annotations, the description carries a higher disclosure burden. It conveys that recall is a non-mutating semantic search across all memories, which is useful. However, it does not describe the result format, ordering, or the approximate nature of semantic matching.

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

Conciseness5/5

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

The description is two sentences with no filler. The primary action and the suggested usage context are both front-loaded and every sentence earns its place.

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

Completeness3/5

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

The main call path is clear for a search tool, but the lack of an output schema and any behavioral annotations means the agent must infer return shape and filtering semantics. It is adequate but not fully complete for confident invocation.

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

Parameters2/5

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

The description adds no parameter-level meaning. It does not clarify how query, tags, project, limit, or min_importance interact, and schema coverage is only 60%, leaving limit and min_importance without descriptive text. The description needed to compensate for this gap but did not.

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

Purpose4/5

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

The description uses a specific verb and resource: 'Semantic search across all stored memories.' This clearly identifies the operation and differentiates it from sibling tools like remember or forget, though it does not name an alternative explicitly.

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 an actionable use case: 'Use this at the start of a session to recover context from prior sessions.' It provides clear context but does not explicitly state when not to use it or point to alternatives like list_memories or get_stats.

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