vet_adverse_event_summary
Pack: veterinary-fda · Endpoint: https://gateway.pipeworx.io/veterinary-fda/mcp
Count FDA (openFDA Center for Veterinary Medicine) animal adverse-event reports for a drug/species pair, broken down by reaction (top 20), outcome (recovered/died/euthanized/ongoing), and by year. Answers “how many adverse events for Bravecto in dogs”, “what are the most common side effects of fluralaner”, “has fluralaner caused deaths in dogs”. Pass a brand/product name via “drug” OR a chemical active ingredient via “active_ingredient”.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
drug | string | no | Brand/product name, e.g. “Bravecto”. |
active_ingredient | string | no | Chemical active ingredient, e.g. “fluralaner”. Use this OR “drug”. |
species | string | yes | Animal species: Dog, Cat, Horse, Cattle, Swine, etc. |
Example call
Arguments
{
"active_ingredient": "fluralaner",
"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_event_summary","arguments":{"active_ingredient":"fluralaner","species":"Dog"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('vet_adverse_event_summary', {
"active_ingredient": "fluralaner",
"species": "Dog"
});
More examples
{
"drug": "Bravecto",
"species": "Cat"
}
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.