Skip to main content
Glama

Recalld (EU)

memory_search

Search memory using embedding retrieval without LLM selection. Returns multiple matching facts for the agent to digest.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
modeNofacts (default) or sources
pathNooptional; only use memory from this one document or file, e.g. contract-b.pdf; call memory_filters for the available values
limitNomaximum results to return
queryYesnatural language query
scopeNothread (default) searches this session plus memory not tied to a session; agent searches every session for the agent
authorNooptional; only use memory produced by this author, matched case-insensitively; call memory_filters for the available values
task_idNooptional shared task id; also search facts stored in that task's shared pool
thread_idNooptional free-form conversation/session label; reuse the same value to scope recall/search to one session, omit to read only memory that is not tied to a session
source_kindNooptional; only use memory from sources of this kind: SYSTEM, USER, AGENT, TOOL, DOCUMENT or CODE

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

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 the behavioral disclosure burden. It does reveal non-obvious behavior: retrieval is embedding-based, no LLM selects results, and multiple raw facts are returned. It does not state read-only status, result ordering, default scoping behavior, or output structure.

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?

Two short sentences with no filler; the retrieval mechanism is front-loaded and the output consequence is stated in the second sentence. Every clause 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?

For a nine-parameter tool with no annotations and no output schema, the description gives solid high-level semantics but omits how this tool relates to siblings and how filters/scoping parameters interact. The rich schema compensates partially but cannot supply the missing usage context.

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

Parameters3/5

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

The input schema covers all nine parameters with descriptive text (100% coverage), so the schema carries the heavy lifting; the description adds no parameter-specific meaning. Baseline 3 is appropriate because no gaps in schema coverage exist.

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 ('Search memory') and adds the mechanism 'embedding retrieval without LLM selection', which distinguishes this from LLM-curated recall. It also states the return shape ('multiple matching facts'), though it never names a sibling explicitly.

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

Usage Guidelines3/5

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

The phrase 'without LLM selection' and 'for the agent to digest' imply this tool is appropriate when raw retrieved facts are wanted rather than a synthesized answer. However, there is no explicit when-to-use, prerequisite, or exclusion relative to memory_add, memory_filters, or memory_recall.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources