DeepRecall - Product Safety Intelligence
Server Details
Search 120,000+ recalled products from 8 global safety agencies using AI similarity.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- DeepRecall-io/deeprecall-mcp
- GitHub Stars
- 0
- Server Listing
- deeprecall-mcp
Available Tools
2 toolsget_data_sourcesAInspect
Get information about available recall data sources.
Returns a list of all supported regulatory agencies and their coverage.
This is a free call that does not consume API credits.
Returns:
Dictionary with data sources and their descriptions
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It discloses a key trait: the call is free and does not consume API credits. It also states the return format ('Dictionary with data sources and their descriptions'). While it does not mention side effects or limitations, for a read-only informational endpoint with zero parameters this is adequate and adds value beyond the schema.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise—three short sentences—that front-load the main purpose in the first sentence. The 'Returns:' section is formatted for quick scanning. Every sentence earns its place without redundancy or fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter tool with a simple output, the description is largely complete: it states what the tool does, what it returns (list of agencies and coverage), and that it is free. It could clarify what 'coverage' means or the exact structure of the returned dictionaries, but for the tool's simplicity this is sufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has zero parameters, so the description has no parameter meanings to explain. Per the rubric, a tool with zero parameters gets a baseline of 4. The description does not detract from this and appropriately focuses on output rather than inputs.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Get information about available recall data sources.' It specifies the scope ('all supported regulatory agencies and their coverage'), which distinguishes it from the sibling tool 'search_recalls' that searches for recall records. The verb 'get' and resource 'data sources' are specific.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use the tool: when you need a list of data sources or regulatory agencies. It also notes 'This is a free call that does not consume API credits,' implying it can be used without cost concern. However, it does not explicitly mention when not to use it or compare it to alternatives, so it stops short of a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_recallsAInspect
Search for recalled products similar to your query.
This tool searches DeepRecall's global product safety database using AI-powered
multimodal matching. Provide a text description and/or product images to find
similar recalled products.
Use Cases:
- Pre-purchase safety checks: Before buying, verify if similar products were recalled
- Supplier vetting: Check if a supplier's products have safety issues
- Marketplace compliance: Verify products against recall databases
- Consumer protection: Identify potentially hazardous products
Data Sources:
- us_cpsc: US Consumer Product Safety Commission
- us_fda: US Food and Drug Administration
- safety_gate: EU Safety Gate (Europe)
- uk_opss: UK Office for Product Safety & Standards
- canada_recalls: Health Canada Recalls
- oecd: OECD GlobalRecalls portal
- rappel_conso: French Consumer Recalls
- accc_recalls: Australian Competition and Consumer Commission
Cost: 1 API credit per search
Args:
content_description: Text description of the product (e.g., "children's toy with small parts")
image_urls: List of product image URLs for visual matching (1-10 images)
filter_by_data_sources: Limit search to specific agencies (optional)
top_k: Number of results (1-100, default: 10)
model_name: Fusion model - fuse_max (recommended), fuse_flex, or fuse
input_weights: Weights for [text, images], must sum to 1.0
api_key: Your DeepRecall API key (optional if provided via X-API-Key header)
Returns:
Search results with matched recalls, scores, and product details
Example:
search_recalls(
content_description="baby crib with drop-side rails",
top_k=5
)
| Name | Required | Description | Default |
|---|---|---|---|
| top_k | No | ||
| api_key | No | ||
| image_urls | No | ||
| model_name | No | fuse_max | |
| input_weights | No | ||
| content_description | No | ||
| filter_by_data_sources | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It effectively discloses cost ('1 API credit per search'), data sources, multimodal matching, and the return type. It does not mention rate limits, error behavior, or explicit read-only status, but the 'search' verb implies a safe read operation and the cost note adds useful context beyond what the schema provides.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is well-structured with clear sections (summary, use cases, data sources, cost, args, returns, example) and front-loaded purpose. It is somewhat long, but each section earns its place given the tool's complexity. The data source list is extensive, yet it directly supports the filter_by_data_sources parameter. No redundant information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the high complexity (7 parameters, no annotations, no output schema), the description provides strong coverage: purpose, use cases, data sources, cost, parameter constraints, an example, and a high-level returns statement. It omits detailed return fields or error handling, but the example and parameter details make the tool functionally understandable. A bit more output detail would make it fully complete, but it is very good as-is.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, so the description must compensate. It does so thoroughly: every parameter is explained with types, constraints, defaults, and examples. For instance, image_urls is limited to 1-10 images, top_k to 1-100 with default 10, model_name lists valid values, and input_weights must sum to 1.0. This goes far beyond the bare schema titles and provides actionable semantics.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a clear, specific verb and resource: 'Search for recalled products similar to your query.' It further clarifies the tool's scope via 'DeepRecall's global product safety database' and 'AI-powered multimodal matching.' This clearly distinguishes it from the sibling tool get_data_sources, which is about listing data sources rather than searching.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit use cases (pre-purchase safety checks, supplier vetting, marketplace compliance, consumer protection) that tell the agent when to use this tool. It does not explicitly contrast with sibling tools or state when not to use it, but the scenarios are concrete and the data sources list informs filtering. This is clear guidance, though not as explicit as naming alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user or an account that owns the GitHub organization, then choose Claim with GitHub.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
Is it recalled or fake? Recall lookup vs live US gov feeds + transparent counterfeit risk signal.
Match consumer products to official CPSC recalls and purchase source-linked evidence.
Check a product's recall risk: score + active CPSC/FDA/NHTSA recalls for a product or brand.
Is this product recalled in the EU? 46,506 official Safety Gate alerts by GTIN, brand or name.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceAccess US consumer-product safety recalls from the CPSC, free and without authentication.16MIT
- FlicenseNot gradedqualityDmaintenanceEnables searching FDA food recalls and adverse event reports through natural language, supporting filters and pagination.
- AlicenseAqualityCmaintenanceSearch URDB's product integrity database — integrity scores, enshittification events, warranty cuts, and material downgrades across consumer products. Sourced and evidence-backed.4702MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
get_data_sources provides metadata about available regulatory agencies, while search_recalls performs the actual product recall search. These are clearly distinct purposes with no functional overlap, making tool selection unambiguous.
Both tools follow a consistent verb_noun pattern with snake_case (get_data_sources, search_recalls). The naming is predictable and matches the server's search-oriented purpose.
With only two tools, the server feels minimal. However, for a specialized search service, a metadata tool and a search tool may be sufficient. Still, the count is on the thin side, potentially limiting discoverability of other useful capabilities.
The core workflow of discovering available data sources and searching for recalls is covered. A minor gap is the lack of a dedicated tool to retrieve detailed information for a specific recall ID, but the search results include sufficient product details, so agents can work around this.