Skip to main content
Glama

Server Details

Search U.S. FDA, USDA FSIS, and CPSC recalls, fetch one, or diff since a date. API key or x402.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

TDQS

A4.1/5.0

Scored across 4 tools

Disambiguation5/5

Each tool has a clearly distinct role: incremental change sync, single-recall lookup, agency metadata, and filtered search. There is no meaningful overlap between the return sets or intended use cases.

Naming Consistency4/5

get_recall, list_agencies, and search_recalls uniformly follow a verb_noun pattern in snake_case. diff_since breaks that pattern slightly, though it is still an intuitive verb-style name and not confusing.

Tool Count5/5

Four tools is well-scoped for a focused read-only recall API. Each tool covers a distinct core operation—discover agencies, search, fetch details, and sync changes—without redundancy or bloat.

Completeness5/5

For a read-only consumer of public recall notices, the surface is complete: agencies can be listed, recalls can be searched or fetched by ID/slug, and changes can be tracked incrementally. No obvious dead ends or missing retrieval paths.

Available Tools

4 tools
diff_sinceRecalls changed since a timestampA
Read-only
Inspect

Recalls created or updated after a timestamp, oldest change first; each row has change = created | updated. Pass meta.until as the next since. Paid: send Authorization: Bearer rk_… or an x402 payment in params._meta["x402/payment"]. Fixed price per call (x402 exact). RecallRadar indexes public recall notices from the FDA, USDA FSIS, and CPSC. The official agency notice is the authoritative source. Always confirm details at the linked source before acting. source_url is authoritative.

ParametersJSON Schema
NameRequiredDescriptionDefault
qNoFree text over product, reason, firm
limitNoRows to return. Paid per row returned.
sinceYesISO 8601 timestamp; returns rows created or updated after it
activeNoOngoing, or unknown for agencies without lifecycle status
agencyNo
brandsNoWhole-word match on normalized brand, firm, or product text
cursorNonext_cursor from the previous call
statusNo
classesNoRows without a class (CPSC) always match
companyNoCompany slug or name (firm, else brand)

TDQS

A3.9/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, and the description stays fully consistent — 'created or updated' describes the rows, not a mutation the tool performs. It adds genuinely non-obvious behavioral context the annotations do not carry: the Authorization/Bearer and x402 payment requirements, the fixed-price-per-call model, and the authoritative-source caution. This is exactly the kind of supplementary behavior disclosure the rubric asks for.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The definition has no fluff: behavior, ordering, pagination handshake, payment, and data provenance each earn their sentence and appear in logical order. The final pair of clauses ('The official agency notice is the authoritative source' and 'source_url is authoritative') slightly repeats the same idea. At roughly 100 words it is dense but scannable rather than bloated.

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 10-parameter, read-only tool with no output schema, the description carries the weight of the non-obvious details: ordering, the change-type field, the pagination token, payment mechanics, and source reliability caveats. The schema fills in the filter semantics, so the combination covers what an agent needs for correct invocations. It does not sketch the full row shape, but with eight named parameters and this behavioral detail, the gaps are acceptable.

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 description coverage is 80%, so the schema carries most parameter meaning and the baseline is 3. The description surfaces the payment out-of-band metadata slot (params._meta["x402/payment"]) and the meta cursor contract, which do add information beyond the schema. It does not elaborate on the filter parameters' behavior beyond what the schema already says.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb + resource: 'Recalls created or updated after a timestamp, oldest change first', which crisply states what the tool returns and how it is ordered. The 'change = created | updated' detail makes it easy to tell this apart from search_recalls (query-based) and get_recall (single record) without opening schemas. It stops short of explicitly naming the siblings it differs from, so differentiation is implied rather than stated.

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 gives a direct usage pattern for the core flow: 'Pass meta.until as the next since', which tells an agent exactly how to paginate and loop a sync of changed records. It also provides the payment/authorization procedure, which is essential for successfully invoking this tool. However, it never says when to choose diff_since over search_recalls or get_recall, leaving that selection to inference.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_recallGet one recallA
Read-only
Inspect

One recall by id or slug, with the raw agency payload and status history. Paid: send Authorization: Bearer rk_… or an x402 payment in params._meta["x402/payment"]. Fixed price per call (x402 exact). RecallRadar indexes public recall notices from the FDA, USDA FSIS, and CPSC. The official agency notice is the authoritative source. Always confirm details at the linked source before acting. source_url is authoritative.

ParametersJSON Schema
NameRequiredDescriptionDefault
idYes32-hex recall id or page slug

TDQS

A4.3/5.0
Behavior5/5

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

Goes beyond annotations by disclosing that the operation is paid (price per call), returns raw agency payload and status history, and that the official source is authoritative. This is richer than the readOnlyHint and provides actionable behavioral context.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Description is moderately long but each sentence adds value: payment, data sources, caution. It front-loads the core purpose and includes necessary operational details; only minor trim possible without losing substance.

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 single-parameter tool with no output schema, the description covers payment, return contents, and source authority. It omits potential error cases or rate limits, but these are less critical given the tool's specificity and read-only nature.

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 already describes the parameter as '32-hex recall id or page slug' (100% coverage). The description repeats this but adds the clarification that it can be either id or slug, which is slightly redundant. It doesn't add format details beyond the schema, so baseline 3 is appropriate.

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 states a specific verb ('Get') and resource ('one recall') with clear selection criteria ('by id or slug'). It distinguishes from siblings like search_recalls (bulk/search) and list_agencies (list) by focusing on single-item retrieval with raw payload and history.

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?

Provides explicit payment requirements (Bearer token or x402) and a caution to confirm details at the source, indicating when to use it (single recall lookup). It doesn't explicitly list alternatives or when not to use, but the single vs. search contrast is implied through the sibling tool names.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_agenciesList indexed agenciesA
Read-only
Inspect

Agencies RecallRadar indexes and their labels. Free. RecallRadar indexes public recall notices from the FDA, USDA FSIS, and CPSC. The official agency notice is the authoritative source. Always confirm details at the linked source before acting.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.6/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, and the description adds useful context beyond that: the tool is free, indexes public FDA/USDA/CPSC notices, and the official agency notice is authoritative with a confirmation caveat. It does not describe the exact return format, but for a read-only listing tool the added source and authority context is valuable.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is short and front-loaded with the core purpose, followed by useful source and authority context. The word 'Free' is somewhat filler but not harmful, and the overall structure is compact and readable.

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 no-argument listing tool with read-only annotations, the description covers the main need: what is listed, which agencies are indexed, and a reliability caveat. It is slightly light on exact output structure, but the absence of parameters and output schema keeps the gap minor.

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 tool has zero parameters and the schema coverage is effectively 100%, so there are no parameter semantics for the description to clarify. Baseline for zero-parameter tools is 4, and the description adds no conflicting or missing parameter information.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The title and first sentence make clear this tool lists the agencies RecallRadar indexes along with their labels, and the named agencies (FDA, USDA FSIS, CPSC) distinguish it from recall/search/diff siblings. However, the description's first sentence is a noun phrase rather than an explicit verb+resource statement, so it leans on the title for the verb.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no explicit guidance on when to use this tool versus alternatives such as search_recalls or get_recall. The description offers general context about RecallRadar's data sources but no conditions, exclusions, or routing hints.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_recallsSearch US product recallsA
Read-only
Inspect

Search FDA, USDA FSIS, and CPSC recalls by brand, company, free text, agency, class, status, and published date, newest first. Paid: send Authorization: Bearer rk_… or an x402 payment in params._meta["x402/payment"]. Priced per row returned (x402 upto). RecallRadar indexes public recall notices from the FDA, USDA FSIS, and CPSC. The official agency notice is the authoritative source. Always confirm details at the linked source before acting. source_url is authoritative.

ParametersJSON Schema
NameRequiredDescriptionDefault
qNoFree text over product, reason, firm
limitNoRows to return. Paid per row returned.
sinceNopublished_at >= since
untilNopublished_at <= until
activeNoOngoing, or unknown for agencies without lifecycle status
agencyNo
brandsNoWhole-word match on normalized brand, firm, or product text
cursorNonext_cursor from the previous call
statusNo
classesNoRows without a class (CPSC) always match
companyNoCompany slug or name (firm, else brand)

TDQS

A4.3/5.0
Behavior5/5

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

Beyond readOnlyHint=true, it discloses important behaviors: results are newest-first, calls are priced per row, payment can be sent via bearer token or x402, and the source notice is authoritative. It also adds a safety directive to confirm details at the linked source before acting.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is front-loaded with the main purpose, then payment and authoritative-source caveats. It is reasonably tight, though the authoritative-source point is repeated in three consecutive sentences.

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 11 optional parameters and no output schema, the description provides enough context for an agent to invoke it correctly: agencies, search axes, ordering, payment, and authoritative-source guidance are all present. It does not describe the full response shape, but that is a smaller gap given the rich filter documentation.

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 description coverage is 82%, so the structured schema already documents most parameters. The description adds only light semantic value by summarizing filter axes, though it does clarify that source_url is authoritative and that limit affects pricing.

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 names a specific verb and resource ('Search FDA, USDA FSIS, and CPSC recalls'), lists concrete filters, and is clearly distinct from siblings like get_recall or list_agencies. It is unambiguous about what kind of lookup this is.

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?

It conveys a clear use case: searching across multiple consumer product/food recall sources with rich filtering. It does not explicitly say 'use get_recall for a single known recall', but the search-focused wording is enough to route agent selection away from the siblings.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 4 tool updates
    • First observeddiff_since
    • First observedget_recall
    • First observedlist_agencies
    • First observedsearch_recalls

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    C
    maintenance
    Access US consumer-product safety recalls from the CPSC, free and without authentication.
    5 npm
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Enables determining whether a specific product unit is affected by FDA/CPSC recalls by evaluating the unit's lot, date, and other codes against frozen recall notices, returning affected, not affected, or needed-code questions.
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources