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
Behavior5/5

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

Annotations already declare readOnlyHint=true and idempotentHint=true. Description adds scoping detail ('Scoped to your identifier (anonymous IP, BYO key hash, or account ID)') and explains listing behavior. 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?

Three sentences, each serving a distinct purpose: function, usage context, and scope/pairing. Front-loaded and no wasted words.

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?

Completely describes behavior for a simple read tool. Explains both retrieval and listing modes, scoping, and pairing with sibling tools. No output schema needed as return values are clear.

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 covers 100% of parameters with description 'Memory key to retrieve (omit to list all keys)'. Description repeats this but adds no new semantic detail beyond what the schema provides.

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?

Clearly states the tool 'retrieve a value previously saved via remember, or list all saved keys (omit the key argument)'. Distinguishes from sibling tools 'remember' and 'forget' by explicitly pairing with 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?

Provides explicit context: 'Use to look up context the agent stored earlier... without re-deriving it from scratch.' Also explains when to omit the key for listing and mentions scoping. Pairs with sibling tools.

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
Disambiguation4/5

Most tools have distinct purposes, but ask_pipeworx, ask_pipeworx_beta, and ask_pipeworx_grounded are very similar, causing potential confusion. The memory tools (remember/recall/forget) are separate, but the overall set is diverse enough that agents can typically distinguish them.

Naming Consistency2/5

Tool names use a mix of camelCase (ask_pipeworx, entity_profile, generate_llms_txt) and snake_case (http_status, list_http_statuses, list_subscriptions), with no consistent verb_noun pattern. Some names are descriptive, but the lack of a unified convention hurts predictability.

Tool Count2/5

33 tools is high for a server named 'Httpstatus' that only has two HTTP-related tools. The large number spans data retrieval, memory, subscriptions, prediction markets, and more, making the server feel bloated and unfocused.

Completeness3/5

The server covers many domains but each is incomplete. HTTP status has lookup and list but no lifecycle. Memory tools are basic. Data retrieval is extensive but not exhaustive for any single domain. It's a broad but shallow collection.