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
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.4/5 across 2 of 2 tools scored.
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.
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 | |||
Tool Definition Quality
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 |
Tool Definition Quality
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.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
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
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 Servers
- Alicense-qualityCmaintenanceAccess US consumer-product safety recalls from the CPSC, free and without authentication.9MIT
- Flicense-qualityDmaintenanceEnables 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.4502MIT
Your Connectors
Sign in to create a connector for this server.