vet_adverse_events
Pack: veterinary-fda · Endpoint: https://gateway.pipeworx.io/veterinary-fda/mcp
Search FDA (openFDA Center for Veterinary Medicine) reports of side effects/adverse events in animals given a veterinary drug or parasite preventive — dogs, cats, horses, cattle. Answers “what side effects has Bravecto caused in dogs”, “adverse events for fluralaner in cats”, “has anyone reported seizures after ivermectin in dogs”. Pass a brand/product name via “drug” OR a chemical active ingredient via “active_ingredient” (either works — the tool resolves brand names against the ingredient field, since that is where product names are actually recorded upstream). Reports are spontaneous submissions, not a validated causal or incidence study.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
drug | string | no | Brand/product name, e.g. “Bravecto”, “Frontline”, “Heartgard”. |
active_ingredient | string | no | Chemical active ingredient, e.g. “fluralaner”, “ivermectin”, “moxidectin”. Use this OR “drug”. |
species | string | yes | Animal species: Dog, Cat, Horse, Cattle, Swine, etc. Case-insensitive. |
reaction | string | no | Optional: filter to a specific reaction/symptom, e.g. “vomiting”, “seizure”, “lethargy”. |
breed | string | no | Optional: filter to a breed, e.g. “German Shepherd”, “Labrador”. |
since | string | no | Optional: only reports received on/after this date, YYYY-MM-DD. |
limit | number | no | Max reports to return (1-50, default 10). |
Example call
Arguments
{
"drug": "Bravecto",
"species": "Dog"
}
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_adverse_events","arguments":{"drug":"Bravecto","species":"Dog"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('vet_adverse_events', {
"drug": "Bravecto",
"species": "Dog"
});
More examples
{
"active_ingredient": "fluralaner",
"species": "Dog",
"reaction": "vomiting",
"limit": 5
}
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.