vet_product_recalls
Pack: veterinary-fda · Endpoint: https://gateway.pipeworx.io/veterinary-fda/mcp
Search FDA Enforcement Report recalls for a pet food, animal food, or veterinary drug product or manufacturer. Answers “has Blue Buffalo dog food been recalled”, “dog food recalls”, “veterinary drug recalls”. Source: openFDA food/enforcement.json and drug/enforcement.json — there is no dedicated animal-food recall feed, and coverage of pet-food recalls specifically is uneven (some well-known FDA-confirmed pet-food recalls are not in this dataset at all). A zero-result answer means no FDA Enforcement Report record was found under this name, not that the product was never recalled — check fda.gov/animal-veterinary/safety-health/recalls-withdrawals for the fuller picture the tool states this in its response.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
product | string | yes | Product name, brand, or manufacturer, e.g. “dog food”, “Blue Buffalo”, “Bravecto”. |
kind | string | no | Which FDA enforcement dataset to search: “food” (pet/animal food, default) or “drug” (veterinary drugs). |
lot | string | no | Optional: filter to recalls whose lot/code info mentions this lot number. |
limit | number | no | Max recalls to return (1-50, default 10). |
Example call
Arguments
{
"product": "dog food"
}
curl
curl -X POST https://gateway.pipeworx.io/veterinary-fda/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"vet_product_recalls","arguments":{"product":"dog food"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('vet_product_recalls', {
"product": "dog food"
});
More examples
{
"product": "Blue Buffalo"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"veterinary-fda": {
"url": "https://gateway.pipeworx.io/veterinary-fda/mcp"
}
}
}
See Getting Started for client-specific install steps.