Skip to main content
Glama

Recalld (US)

Server Details

Long-term memory for AI agents. Recalld updates facts as information changes and retrieves relevant memory through MCP. Use with a Recalld EU account.

Ownership verified
Status
Healthy
OAuth
Works in Glama
Last Tested
Transport
Streamable HTTP · MCP 2025-11-25
URL

TDQS

A3.7/5.0

Scored across 4 tools

Disambiguation4/5

memory_add, memory_filters, memory_recall, and memory_search each have distinct purposes: ingestion, filter discovery, LLM-based recall, and embedding search. The only potential confusion is between memory_recall and memory_search, but their descriptions clearly differentiate LLM-assisted selection from raw embedding retrieval.

Naming Consistency4/5

All tool names follow a consistent memory_ prefix with a verb suffix (add, filters, recall, search). The pattern is predictable, though 'memory_filters' is a noun rather than a verb_noun action like the others, which is a minor deviation.

Tool Count5/5

Four tools is well-scoped for a memory server: one write operation, one metadata/discovery operation, and two read operations with different retrieval strategies. Each tool earns its place without redundancy.

Completeness4/5

The core memory lifecycle is covered: add content, inspect available filters, and retrieve via two methods. A minor gap is the lack of delete or update operations for managing stored memory, but the stated purpose of recall/search is fully served.

Available Tools

4 tools
memory_addAInspect

Ingest content into memory (conversation or document inputs). Agent is fixed by the OAuth connection.

ParametersJSON Schema
NameRequiredDescriptionDefault
inputsYescontent items to ingest
task_idNooptional shared task id; include findings in the task memory pool visible to other agents on the same task
thread_idNooptional free-form conversation/session label; reuse the same value to group memories within one session, omit for agent-wide memory

TDQS

A3.6/5.0
Behavior3/5

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

No annotations are provided, so the description must disclose behavior. It adds the constraint that the agent is fixed by the OAuth connection, which is useful context. However, it does not mention side effects beyond 'ingest', the persistence behavior, whether it is idempotent, or any restrictions on inputs (e.g., the 'deleted' field hints at deletion handling, but the description does not explain it). It provides some behavioral context but leaves important traits undisclosed.

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, front-loaded with the primary purpose, and contains no filler. The addendum about OAuth is relevant and concise. Every word adds value.

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

Completeness2/5

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

Despite having only 3 top-level parameters, the 'inputs' parameter is a nested array with several fields (kind, path, author, content, deleted, event_date, content_type). The description does not explain the expected structure or constraints (e.g., valid values for 'kind' or 'content_type'), nor does it mention return values or error behavior (no output schema). The tool's complexity warrants a more detailed description to guide an agent on correct invocation.

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 schema covers all top-level parameters (inputs, task_id, thread_id) with descriptions, so the baseline is 3. The description adds a note about 'conversation or document inputs' which loosely maps to the 'inputs' argument, but does not explain the nested structure or the meaning of 'kind' or 'content_type' beyond what the schema provides. The description adds marginal value over the 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 description states a clear action ('Ingest content into memory') and specifies the resource and input type ('conversation or document inputs'). The verb 'ingest' distinguishes it from sibling tools (memory_search, memory_recall, memory_filters) which are clearly for retrieval/filtering, not adding. Purpose is unambiguous.

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 description implies this tool is for adding content and siblings are for querying, but it does not explicitly state when to use this vs alternatives or when not to use it. There is no mention of 'use this for adding, memory_search for finding' or any exclusion context. Guidance is implied by the verb and the sibling names but not made explicit.

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

memory_filtersAInspect

List the source kinds, authors and document paths this agent holds. Call it before passing source_kind, author or path to memory_recall or memory_search, so the filter matches something.

ParametersJSON Schema
NameRequiredDescriptionDefault
thread_idNooptional session label; restrict to one session, omit for every session

TDQS

A4.4/5.0
Behavior4/5

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

No annotations are provided, so the description carries the full burden. It transparently states the output content (source kinds, authors, paths) and the verb 'List' implies a read-only operation. It does not explicitly mention side-effect-free or scope limitations, but for a simple listing tool the behavior is clear enough.

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 zero waste. The purpose is front-loaded, and the usage guidance follows immediately. Every word earns its place.

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

Completeness4/5

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

For a simple tool with one optional parameter and no output schema, the description covers purpose, output content, and when to use it. It does not describe the exact response format, but the stated content and intended usage are sufficient for correct invocation.

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?

Schema description coverage is 100% for the only parameter, thread_id, fully describing it as optional and session-restricting. The description adds no additional parameter meaning, which matches the baseline of 3 for high schema coverage.

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 description states a specific verb and resource: 'List the source kinds, authors and document paths this agent holds.' This clearly distinguishes it from siblings like memory_recall and memory_search, which retrieve memories, and memory_add, which writes.

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

Usage Guidelines5/5

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

It gives explicit when-to-use guidance: 'Call it before passing source_kind, author or path to memory_recall or memory_search, so the filter matches something.' This tells the agent exactly when to invoke the tool and why, with no ambiguity.

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

memory_recallBInspect

Recall relevant facts for a query using LLM-assisted selection. Returns a concise answer from stored memory.

ParametersJSON 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

TDQS

B3.2/5.0
Behavior3/5

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

With no annotations, the description must carry the behavioral disclosure burden, and it does add useful traits: 'LLM-assisted selection' and 'Returns a concise answer.' However, it does not explicitly state that the operation is read-only, what happens with no matching memory, or behavior differences across modes.

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 tight sentences with no filler, and the core behavior is front-loaded in the first sentence. Every part is informative and easy to scan.

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

Completeness2/5

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

For a tool with nine parameters, no annotations, no output schema, and a close sibling like memory_search, the description is too thin. It omits output structure, mode distinctions, and the recall-versus-search decision, leaving an agent to infer too much.

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?

Schema description coverage is 100%, so all nine parameters are already documented in the schema. The description adds no parameter-level meaning, but the schema carries the full burden; baseline 3 is appropriate.

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: 'Recall relevant facts' from 'stored memory,' and adds a distinctive mechanism, 'LLM-assisted selection.' It does not explicitly distinguish memory_recall from the sibling memory_search, so it stops short of a 5.

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

Usage Guidelines2/5

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

There is no guidance about when to use memory_recall versus memory_search or memory_add. The only sibling reference appears indirectly in the schema ('call memory_filters for the available values'), which is not usage guidance for tool selection.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 4 tool updates
    • First observedmemory_add
    • First observedmemory_filters
    • First observedmemory_recall
    • First observedmemory_search

Related MCP Servers

  • A
    license
    A
    quality
    C
    maintenance
    Enables brand visibility monitoring across major AI platforms like ChatGPT, Claude, Gemini, and Perplexity. It allows users to track visibility scores, analyze competitor data, and receive actionable insights to improve AI-generated brand recommendations.
    16
    7 npm
    1
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    Enables tracking competitor websites, changelogs, blog feeds, and pricing pages with meaningful diffs, classification, and Markdown digests via MCP tools for listing, adding, removing competitors, running checks, and retrieving digests or changes.
    MIT
  • A
    license
    Not graded
    quality
    B
    maintenance
    Browse IndustryLens's published competitive-intelligence reports and head-to-head competitor comparisons from any AI agent — real, source-backed data.
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources