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

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

Annotations already declare readOnlyHint=true, idempotentHint=true, destructiveHint=false. The description adds value by explaining scoping to identifier and the behavior of listing all keys when key is omitted, providing context beyond 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, each serving a purpose: core function, usage, scoping, and pairing. No fluff, well front-loaded with the main purpose.

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 and no output schema, the description covers retrieval, listing, scoping, and related tools completely. No gaps.

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% and the description reinforces the schema by explaining the key parameter's behavior. No additional parameter semantics needed beyond what schema provides, so baseline of 3 is appropriate.

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 retrieves a value saved via remember or lists all keys when omitted. It distinguishes itself from siblings remember and forget by specifying its role as retrieval.

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 explicitly tells when to use the tool: 'look up context the agent stored earlier without re-deriving it from scratch.' It also mentions scoping and pairs with remember and forget, but does not explicitly state when not to use.

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

Multiple tool clusters overlap heavily — ask_pipeworx_beta is functionally identical to ask_pipeworx right now, and the six Polymarket tools (polymarket_edges, polymarket_arbitrage, bet_research, etc.) have blurry boundaries. The entity-research family (entity_profar, compare_entities, recent_changes) is also easy to misselect despite detailed descriptions.

Naming Consistency3/5

All names are snake_case, but conventions are mixed: verb_noun (resolve_entaty, validate_claim), bare verbs (remember, recall, query), adjective_noun (recent_alerts, recent_changes), and brand-prefixed nouns (polymarket_edges, pipeworx_trending). Family prefixes and verbs help readability, but the overall pattern is not uniform.

Tool Count2/5

At 34 tools this exceeds the 25+ threshold and spans loosely related domains — Bloomington open data, Pipeworx research, prediction markets, AI marketing, memory, npm scanning, and llms.txt generation. The scope feels heavy and unfocused relative to the 'Data Bloomington' server name.

Completeness4/5

The core research lifecycle is well covered: routing (ask_pipeworx), grounded verification, deep research, entity profiles/comparisons/changes, claim validation, entity resolution, subscriptions, and memory all exist. Minor gaps remain — no standalone tool for fetching a pipeworx:// citation URI and no API-key management — but agents can work around them.