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

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the safety profile is covered. The description adds useful behavioral context about scoping to the identifier and the two modes (retrieve vs list). It does not mention edge cases like missing keys or return formats, but for a simple read tool this is adequate.

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 three sentences long, front-loaded with the main action, and every sentence adds value: core function, usage examples, and scoping/pairing. No redundant or filler content.

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 with one optional parameter and no output schema. The description covers purpose, usage context, scoping, and related tools. It implicitly conveys what the tool returns (a value or list of keys), which is sufficient for an agent to invoke it correctly.

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% for the single parameter 'key', and the schema description already states 'Memory key to retrieve (omit to list all keys)'. The description adds no new parameter-level information beyond repeating the same behavior, so it meets the baseline of 3 without exceeding it.

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 clearly states the tool's function: retrieve a saved value or list all saved keys. It uses a specific verb ('retrieve') and resource ('value previously saved via remember'), and distinguishes itself from sibling tools like 'remember' and 'forget' by naming them directly.

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?

The description explicitly explains when to use the tool: to look up context the agent stored earlier without re-deriving it. It also mentions scoping to the user's identifier and pairs with 'remember' to save and 'forget' to delete, providing clear usage 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

A3.6/5.0
Disambiguation2/5

Multiple tool families overlap heavily: ask_pipeworx, ask_pipeworx_beta, ask_pipeworx_grounded, deep_research, and validate_claim all route questions to the same underlying 5,767 tools with significant functional overlap. Polymarket tools (polymarket_arbitrage, polymarket_edges, polymarket_edge_tracker, polymarket_fill_risk) also have blurred boundaries around edge detection and fill risk. The ArcGIS tools (search_datasets, layer_info, query_layer) are distinct, but the non-ArcGIS tools dominate and create confusion.

Naming Consistency2/5

The naming conventions are inconsistent across the set. Some tools use verb_noun (ask_pipeworx, query_layer, search_datasets, list_subscriptions), some use bare verbs (forget, recall, subscribe, unsubscribe), and others use descriptive multi-word names (polymarket_fill_risk, scan_competitor_ai_presence, generate_llms_txt). The ask_pipeworx family and polymarket_* family are internally consistent, but the overall set mixes styles without a clear pattern.

Tool Count2/5

34 tools is heavy for a server that appears to be an ArcGIS data server but includes a massive Pipeworx data-research and prediction-market subsystem. The ArcGIS portion only has 3 tools (search_datasets, layer_info, query_layer), while the rest form a separate general-purpose research/betting toolkit. The count feels bloated and unfocused relative to the server's stated name.

Completeness2/5

The ArcGIS surface is incomplete: search_datasets, layer_info, and query_layer offer no update/create/delete or metadata exploration beyond one layer at a time. The Pipeworx portion is broad but lacks clear lifecycle coverage for subscriptions (create/cancel works, but no update), and the memory tools (remember/recall/forget) are peripheral. The set feels like an accidental aggregation of unrelated domains rather than a complete surface for one purpose.