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.7/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 valuable context: scoping to an identifier (anonymous IP, BYO key hash, or account ID) and the dual behavior (retrieve vs list). No contradictions.

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 concise sentences: the first gives action and dual behavior, the second provides usage context and pairing. No extraneous words, every sentence earns its place.

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 one optional parameter, no output schema, and good annotations, the description fully covers usage, scoping, and pairing. An agent has all information needed to select and invoke the tool correctly.

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%, but the description adds semantic context beyond the schema: it clarifies that omitting the key argument lists all keys, and it explains the purpose of the key parameter (memory key to look up context). This adds value over the schema alone.

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 verb 'Retrieve' and the resource 'value previously saved via remember' or 'list all saved keys'. It explicitly distinguishes from sibling tools remember and forget by mentioning them.

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 explains when to use (look up context stored earlier) and what not to do (omit key argument to list). It also provides explicit pairing guidance with remember and forget, giving clear alternatives.

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

Many tools have closely related or overlapping purposes: ask_pipeworx, ask_pipeworx_beta (currently identical), and ask_pipeworx_grounded all route to the same underlying toolset, while discover_tools and suggest_questions both help agents discover capabilities. The polymarket_* family also has several opportunity-scanning tools with subtle differences, though detailed descriptions help clarify.

Naming Consistency3/5

Names are mostly snake_case but follow mixed patterns: verb-first (ask_pipeworx, validate_claim), noun-first (entity_profile, bet_research, la_recent), and bare verbs (remember, forget, unsubscribe). The prefix groups (la_, pipeworx_, polymarket_) show some consistency, but there is no uniform verb_noun convention.

Tool Count2/5

34 tools is well into the 'too many' range for a single server. The surface bundles several distinct domains—structured data querying, prediction markets, LA open data, memory, subscriptions, and npm scanning—making it feel like a kitchen sink rather than a focused toolset.

Completeness4/5

Within each bundled sub-domain, coverage is strong: query/grounded/research/entity-profile/compare/validate covers data workflows; polymarket tools include research, edge scan, arbitrage, fill-risk, and cross-venue spread; LA data has search/query/recent; memory and subscription lifecycles are fully CRUD. Minor gaps exist (e.g., no way to browse LA dataset attributes beyond search), but no major dead ends.