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

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint. The description adds meaningful behavioral context, particularly scoping to an identifier (anonymous IP, BYO key hash, or account ID) and the behavior of omitting the key to list all saved keys. This supplements the annotations without contradicting them.

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 core action, and every phrase adds value. It avoids repetition and irrelevant detail, making it highly concise and well-structured.

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?

For a simple tool with one optional parameter, the description covers the retrieval behavior, list-all behavior, scoping, and relationship to sibling tools. There is no output schema, but the description sufficiently implies what is returned. It is complete for the tool's complexity.

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 already provides 100% coverage for the only parameter (key), so the description adds little beyond what is structured. It offers illustrative examples of memory keys but does not introduce new semantic details, warranting the baseline score of 3.

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: retrieving a saved value or listing all saved keys when the key argument is omitted. It distinguishes itself from sibling tools by explicitly referencing 'remember' and 'forget' as paired operations, making its purpose unambiguous.

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?

The description provides clear context on when to use the tool—'to look up context the agent stored earlier'—and gives concrete examples like target ticker and prior research notes. It also implies alternatives by pairing with remember/forget, but does not explicitly state when not to use it, so it falls short of a 5.

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

Several tools have notably unclear boundaries: ask_pipeworx and ask_pipeworx_beta are explicitly identical right now, and polymarket_edges, polymarket_arbitrage, and bet_research heavily overlap in surfacing betting opportunities. Entity_profile, recent_changes, and compare_entities also share overlapping research scope, making misselection likely.

Naming Consistency3/5

Most names use snake_case and a roughly readable verb_noun style (resolve_entity, compare_entities, list_categories), but conventions vary: some are bare nouns (entity_profile), some are plain verbs (remember, forget), and ask_pipeworx/pipeworx_* break the pattern. It is readable overall, but not a consistent scheme.

Tool Count2/5

34 tools is far more than the 'trivia' name implies, and most of them (Pipeworx research, Polymarket analysis, memory, subscriptions) are unrelated to trivia. The set reads as an entire platform bundled together rather than a purpose-scoped server.

Completeness2/5

For the stated trivia purpose, the surface is missing core lifecycle features like quiz sessions, answer validation, or scoring; the few trivia tools are just category/reference lookups. As a general data/research server it is broad, but there are significant gaps and no coherent domain model tying the tools together.