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)

TDQS

A4.4/5.0
Behavior4/5

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

With annotations already indicating read-only, idempotent, and non-destructive behavior, the description adds valuable context about the scoping mechanism (anonymous IP, BYO key hash, account ID) and the pairing with remember/forget. It goes beyond the annotations without contradicting them, though it could detail return format or error behavior.

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 efficiently structured in three sentences, front-loading the primary action and immediately clarifying the optional listing behavior. Every sentence contributes to purpose, usage context, or related tools, with no redundant or vague wording.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple one-parameter tool with robust annotations, the description covers the core purpose, usage scenario, scoping, and related tools. It lacks explicit mention of return values or edge cases, but given the simplicity and presence of annotations, it is sufficiently complete for an agent to select and invoke the tool.

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 input schema already fully describes the single optional parameter 'key' with the instruction 'Memory key to retrieve (omit to list all keys)' (100% coverage). The description repeats this guidance but does not add new syntax or format details, so it meets the baseline without enhancing parameter semantics.

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 identifies the tool as a retrieval mechanism for previously saved values, with an explicit action to list all keys when the key argument is omitted. It distinguishes itself from sibling tools by naming 'remember' and 'forget' as complements, making its role unambiguous.

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 guidance on when to use the tool: to look up context the agent stored earlier, such as user target ticker or address, without re-deriving. It also names complementary tools (remember, forget) and clarifies scoping to an identifier, effectively outlining the intended usage context and relationships.

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

Most tools have clearly distinct jobs, but ask_pipeworx, ask_pipeworx_beta, ask_pipeworx_grounded, and deep_research are overlapping query/research entry points—and ask_pipeworx_beta is currently identical to ask_pipeworx. Similarly, ai_visibility_check and scan_competitor_ai_presence overlap by composition. The descriptions are detailed enough to choose correctly with care, but the boundaries are not always crisp.

Naming Consistency3/5

All names use lowercase snake_case, which keeps the surface readable, but the naming conventions are mixed: some are imperative verbs (get_tle, list_recent, validate_claim), some are noun phrases (entity_profile, recent_alerts, pipeworx_trending), and several use domain prefixes without a clear verb (polymarket_arbitrage, polymarket_edges). This is still discoverable naming, but it does not follow a consistent verb_noun pattern.

Tool Count2/5

34 tools is well beyond the well-scoped range, and the vast majority belong to a broad Pipeworx research/prediction-market platform rather than the server's apparent 'tle' satellite theme. Only get_tle, list_recent, and search_satellites directly match the server name. It feels like several tool surfaces aggregated into one server rather than one coherent product.

Completeness3/5

For the satellite TLE theme, NORAD lookup, name search, and recent-catalog listing are covered, but orbit propagation, pass prediction, and historical TLE data are missing. For the broader data-research surface, coverage is rich—query, grounded answers, entity resolution, comparison, validation, subscriptions, and memory are all present—so agents have workable paths for most tasks, but the server's mixed scope creates obvious thematic gaps.