- Home
- MCP servers
- SafetySearch
SafetySearch
- python
0
GitHub Stars
python
Language
7 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"surabhya-safetysearch": {
"command": "uv",
"args": [
"run",
"mcp",
"dev",
"server.py"
]
}
}
}SafetySearch is an MCP server that provides access to FDA food safety data through a modular set of tools. You can search recalls, track adverse events, and gain insights on safety trends to help make informed decisions about food products.
How to use
You interact with SafetySearch through an MCP client, calling the available tools to retrieve recalls, adverse events, and safety insights. Each tool focuses on a specific query such as recalls by description, by product type, or by date range. Use clear, descriptive prompts to get precise results, and review the supplied analysis to guide decisions.
To get started, call a tool with the appropriate parameter names described below. The server returns structured results with safety insights and recommended actions.
Examples of typical prompts and corresponding tool calls include:
food.search_recalls_by_product_description(query="ice cream")
food.search_recalls_by_product_type(product_type="Bakery")
food.search_recalls_by_specific_product(product_name="Ben & Jerry's Chocolate Fudge Brownie")
food.search_recalls_by_classification(classification="Class I")
food.search_recalls_by_code_info(code_info="222268")
food.search_recalls_by_date(days=14)
food.search_adverse_events_by_product(product_name="Cheerios")
food.get_symptom_summary_for_product(product_name="Lucky Charms")
What you can accomplish
- Check for recalls and safety alerts on food products you use or sell.
- Monitor recall trends and safety issues over time.
- Analyze safety trends and company information to understand risk factors.
- Access comprehensive safety insights to support decisions related to product safety and compliance.
Available tools
search_recalls_by_product_description
Searches recalls by product description with in-depth analysis and reporting on safety insights.
search_recalls_by_product_type
Searches recalls by product type with detailed analysis, trends, and safety recommendations.
search_recalls_by_specific_product
Checks recalls for a specific product with safety information and actionable guidance.
search_recalls_by_classification
Searches recalls by classification level (e.g., Class I) with risk assessment.
search_recalls_by_code_info
Searches recalls by code information on packaging with safety alerts and tracking.
search_recalls_by_date
Searches recalls within a date range with timeline analysis and safety trends.
search_adverse_events_by_product
Searches adverse events by product with detailed case analysis and safety insights.
get_symptom_summary_for_product
Gets symptom analysis and case details for a specific product with safety insights.