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. First observed

TDQS

A4.3/5.0
Behavior3/5

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

Annotations already provide readOnlyHint, idempotentHint, destructiveHint. Description adds scoping (anonymous IP, key hash, account ID) but mostly aligns with 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?

Two clear, front-loaded sentences with no wasted words.

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 lookup tool with 1 optional param and no output schema, description covers usage, scoping, and pairing. Could mention return format but schema covers enough.

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 has 100% coverage, description adds nuance: omitting key lists all, gives examples of key types (ticker, address, notes).

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?

Description clearly states it retrieves values saved via 'remember' or lists all keys, distinguishing from siblings 'remember' 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?

Explicitly says when to use (look up stored context, avoid re-deriving), pairs with remember/forget, but doesn't mention when not to use or alternatives among siblings.

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

Most tools have clearly distinct purposes, but the multiple 'ask' variants (ask_pipeworx, ask_pipeworx_grounded, deep_research) and discovery tools (discover_tools, suggest_questions) could cause confusion. Descriptions help differentiate, but the overlap is notable.

Naming Consistency4/5

All tool names use lowercase with underscores, but there is a mix of verb-first (e.g., ask_pipeworx, fetch_indicator) and noun-first (e.g., ai_visibility_check, polymarket_arbitrage) patterns. Consistent style but varied structure.

Tool Count2/5

33 tools is excessive for a coherent set. The server covers diverse domains (data lookup, betting, memory, subscriptions, web generation, package scanning) without a clear unifying theme, making it feel like a collection of utilities rather than a focused tool surface.

Completeness3/5

Core data retrieval and research capabilities are well-covered, but there are notable gaps such as lack of data update tools for OWID and no direct visualization. Additionally, the betting tools are extensive while other areas like entity editing are missing.