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?

Annotations already declare readOnlyHint=true and idempotentHint=true, but the description adds behavioral details about listing all keys when omitting the argument and scoping to an identifier, providing useful 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?

The description is four sentences, front-loaded with the main action, and contains no extraneous information. Every sentence adds value.

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?

Given the tool's simplicity (one optional parameter, no output schema), the description is largely complete. It could mention the return format, but the inference is clear from the purpose.

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?

The input schema has 100% coverage and describes the 'key' parameter. The description adds the key behavior: 'omit to list all keys', which clarifies the optionality and the effect of omission, going beyond the schema.

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: 'Retrieve a value previously saved via remember, or list all saved keys (omit the key argument).' It specifies the resource (memory) and differentiates from siblings like 'remember' and 'forget'.

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 tells when to use: 'Use to look up context the agent stored earlier... without re-deriving it from scratch.' It also mentions pairing 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.8/5.0
Disambiguation2/5

Multiple tool families blur together: ask_pipeworx, ask_pipeworx_beta (currently identical by admission), ask_pipeworx_grounded, and deep_research all route to the same 5,721 tools, and the six polymarket tools (arbitrage, edges, edge_tracker, fill_risk, kalshi_spread, bet_research) heavily overlap on prediction-market analysis. The descriptions are verbose but an agent would struggle to reliably pick the right one without reading thousands of words.

Naming Consistency3/5

All names are snake_case, but conventions vary: verb_noun (get_artist, search_album, list_subscriptions), noun-first (polymarket_edges, entity_profile, recent_alerts), bare verbs (remember, forget, recall, subscribe), and vendor prefixes (pipeworx_*, polymarket_*). More importantly, the server is named Theaudiodb yet almost none of the tool names reflect music, making the naming misleading about the server's actual scope.

Tool Count2/5

35 tools is over the threshold for a well-scoped server, and the sprawl is severe: 4 music tools, roughly 20 data-research tools, 6 prediction-market tools, memory utilities, subscription management, npm scanning, and AI-visibility checks. This is not one coherent server but several servers' tool sets bolted together, with no unifying purpose that justifies the count.

Completeness2/5

For a server named Theaudiodb, coverage is thin: search_artist, search_album, get_artist, and get_album_tracks exist, but there is no search_track, no get_album metadata by ID (only its tracks), no trending/browse-by-genre, and get_artist requires an ID only obtainable by searching first. Meanwhile the 31 non-music tools suggest the real domain is actually Pipeworx data research, making the overall surface feel like an incoherent mix where neither domain is fully covered.