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.7/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, destructiveHint=false, idempotentHint=true. The description adds behavioral context beyond annotations: it notes scoping by identifier, the ability to list all keys, and the non-destructive nature. No contradiction 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?

The description is three sentences, all highly informative. It front-loads the primary action ('Retrieve a value...'), then scoping, then pairing. No redundant or extraneous 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?

Given no output schema, the description adequately explains what to expect (value or list of keys). It covers all aspects: usage, parameter behavior, scoping, and relationship with siblings. Highly complete for a simple tool.

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

Parameters4/5

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

Schema coverage is 100% with a single parameter 'key' described as 'Memory key to retrieve (omit to list all keys)'. The description adds meaning by explaining the omission behavior, which is not fully captured in the schema's description.

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 uses specific verbs ('retrieve', 'list') and resources ('value saved via remember', 'all saved keys'), which clearly states what the tool does. It distinguishes from siblings by mentioning '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 Guidelines5/5

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

The description explicitly states when to use ('to look up context the agent stored earlier') and when not ('omit the key argument' to list). It also provides context for pairing with other tools (remember, forget).

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.5/5.0
Disambiguation3/5

The tool set includes many similarly-named tools, especially the 'ask_pipeworx' variants and the multiple polymarket tools, which could cause confusion. However, each tool has a detailed description specifying its unique purpose, so an agent reading carefully can distinguish them.

Naming Consistency2/5

Naming is inconsistent across the set: Huggingface tools use 'get_', 'list_', 'search_' prefixes, while Pipeworx tools use varied verbs like 'ask_pipeworx', 'bet_research', 'entity_profile', and others. There is no overall pattern or convention, making it harder to predict tool names.

Tool Count2/5

With 41 tools, the server is heavily loaded. While each tool has a distinct role, the scope combines two large domains (Huggingface and Pipeworx), leading to a tool count well above the typical 3-15 range for a focused server.

Completeness3/5

The server covers a wide range of functionalities: Huggingface model/dataset queries, Pipeworx data lookups, subscription management, and memory tools. However, it lacks write operations for Huggingface (e.g., uploading models/datasets) and some lifecycle operations, leaving noticeable gaps.