Veterinary Fda
live HealthVeterinary FDA MCP — openFDA Animal & Veterinary adverse events, pet/animal
Tools
vet_adverse_events 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 ef
No parameters required.
Try it
vet_adverse_event_summary 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. Ans
No parameters required.
Try it
vet_product_recalls 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 r
No parameters required.
Try it
animal_drug_search Search FDA-APPROVED animal drugs — the FDA Green Book (Animal Drugs @ FDA), the official list of approved new animal drug applications. Answers "what FDA-approved drugs contain carprofen", "what drugs
No parameters required.
Try it
animal_drug_detail Full FDA Green Book detail for one approved animal drug application, by application_id (from animal_drug_search). Returns the sponsor, every marketed product under the application with its species, do
No parameters required.
Try it
animal_drug_monthly_updates List the FDA Green Book monthly update publications — the monthly PDF index of what changed in the approved-animal-drug list (new approvals, withdrawals, sponsor/labelling changes). Answers "what anim
No parameters required.
Try it
pet_services_near Find veterinary clinics, emergency vets, dog parks, pet stores, or animal shelters near a place, via OpenStreetMap. Answers "emergency vet near Austin TX", "dog parks near me", "pet stores in Denver",
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/veterinary-fda/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/veterinary-fda/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"vet_adverse_events","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("vet_adverse_events", {}); // Or ask in plain English:
const answer = await px.ask("veterinary fda mcp — openfda animal & veterinary adverse events, pet/animal");