Skip to main content
Glama

Food Feeds

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

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

Beyond the annotations (readOnly, idempotent, destructive=false), the description adds critical behavioral details: the 'omit key' listing behavior and the scoping to an identifier (anonymous IP, BYO key hash, or account ID). This explains privacy and namespacing, which annotations do not convey.

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 three sentences, each with a distinct purpose: function, use case, and scoping/companion tools. It is front-loaded with the primary action and free of filler or repetition.

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 retrieval tool with one optional parameter and strong annotations, the description covers the essential behaviors (retrieve, list, scope, pairing). It lacks explicit error/return value details, but the absence of an output schema and the tool's simplicity make the description adequate.

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 schema fully describes the 'key' parameter (including 'omit to list all keys'), so the description doesn't add new parameter semantics. The examples of key contents are helpful but redundant to the schema's coverage.

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 with specific verbs: 'Retrieve a value previously saved via remember' and 'list all saved keys'. It distinguishes itself from sibling tools by explicitly naming remember (save) and forget (delete), making the tool's niche unambiguous.

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 provides clear usage context: 'Use to look up context the agent stored earlier' with concrete examples (target ticker, address, research notes) and contrasts with re-deriving data. It implies the when-not-to-use by mentioning the companion tools (remember/forget), though it doesn't explicitly list exclusion scenarios.

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

B3.4/5.0
Disambiguation2/5

Many tools have overlapping functionality (e.g., ask_pipeworx, ask_pipeworx_beta, ask_pipeworx_grounded) and the set includes both food-specific feeds and general data tools without clear separation. Distinguishing between them, especially for an agent, would be difficult.

Naming Consistency2/5

Tool names follow no consistent pattern: some are snake_case (list_feeds, read_feed), others are lowercase with underscores (ai_visibility_check), and many are multi-word without clear structure (polymarket_arbitrage, scan_dependency). This inconsistency makes it hard to predict tool names.

Tool Count1/5

With 34 tools, the count is high, and most tools are unrelated to the server's stated purpose of 'Food Feeds'. The inclusion of general-purpose Pipeworx tools (e.g., deep_research, entity_profile, polymarket tools) makes the set bloated and unfocused.

Completeness2/5

For the food feeds domain, only three tools (list_feeds, read_feed, fetch_feed) are relevant, which is incomplete. The server lacks tools for searching, subscribing, or managing feeds. The presence of many unrelated tools does not compensate for this gap.