Skip to main content
Glama

Recall

recall
Read-onlyIdempotent

Retrieve a value previously saved via remember, or list all saved keys (omit the key argument). Use to look up context the agent stored earlier — the user's target ticker, an address, prior research notes — without re-deriving it from scratch. Scoped to your identifier (anonymous IP, BYO key hash, or account ID). Pair with remember to save, forget to delete.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
keyNoMemory key to retrieve (omit to list all keys)

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed1 schema field changed
    • addedInput schema / examples
      Added value: +[
      +  {
      +    "key": "user_research_topic"
      +  },
      +  {}
      +]
  2. Added

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds behavioral depth by explaining scoping ('Scoped to your identifier – anonymous IP, BYO key hash, or account ID') and the optional-key listing behavior, which are not present in the annotations.

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?

Four sentences, front-loaded with the primary action. Every sentence adds value: action, use case, scoping, and relationship to siblings. No filler or redundancy.

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?

The tool is simple (single optional parameter, no return schema). The description covers purpose, usage, scoping, and sibling relationships. It implies the return type (value or list of keys) and is complete for this complexity level.

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 coverage is 100% – the key parameter has a clear description ('Memory key to retrieve (omit to list all keys)'). The tool description echoes this and adds examples of key values, but does not significantly extend the schema semantics. Baseline 3 is appropriate given the 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 opens with a specific action – 'Retrieve a value previously saved via remember' – and clearly distinguishes the read/list behavior from the sibling tools remember and forget. It also provides concrete examples of stored context (ticker, address, research notes), leaving no ambiguity about the tool's purpose.

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?

Explicitly names when to use: 'Use to look up context the agent stored earlier... without re-deriving it from scratch.' It contrasts with remember (save) and forget (delete) by stating 'Pair with remember to save, forget to delete,' offering clear alternatives. This meets the bar for explicit alternatives, though it lacks an explicit 'when not to use' statement beyond the immediate sibling context.

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.

TDQS

A4.1/5.0
Disambiguation4/5

Tools have mostly clear distinctions: ask_pipeworx variants differ by grounding/evidence guarantees, and meta-tools (discover_tools, suggest_questions) serve onboarding. However, ask_pipeworx_beta currently matches ask_pipeworx exactly, creating transient ambiguity, and deep_research vs ask_pipeworx overlap in routing capability though with different scopes.

Naming Consistency4/5

All tools use snake_case and most follow verb-first naming (ask_pipeworx, compare_entities, generate_avatar, subscribe). A few are descriptive nouns (recent_alerts, recent_changes, pipeworx_trending) but still readable and predictable. No mixed conventions; overall consistent style.

Tool Count2/5

33 tools is excessive for a single server, and many are auxiliary (avatar generation, memory, feedback) that do not serve the core data-access purpose. The primary question-answering capability is centralized in a few routers, making many separate tools feel redundant or unrelated, which dilutes navigability.

Completeness4/5

The core domain of structured data access is well covered with routing, grounded answering, deep research, entity profiles, comparisons, and claim validation. Subscription lifecycle (subscribe/unsubscribe/alerts) and memory (remember/recall/forget) round out the surface. Minor gaps like lack of direct tool invocation outside the router are covered by discover_tools, and no critical dead ends exist for typical queries.