animal_drug_detail
Pack: veterinary-fda · Endpoint: https://gateway.pipeworx.io/veterinary-fda/mcp
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, dose form, route, strength and approved dosage/indications, plus the FOI approval summaries — FDA’s own plain-English statement of what each original approval and supplement was FOR, with a PDF link. Answers “what was Rimadyl approved for”, “what does application 141053 cover”, “show me the approval history of this animal drug”.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
application_id | number | yes | Green Book applicationId, e.g. 1024 (Rimadyl Caplets). Get it from animal_drug_search — this is NOT the NADA application number. |
Example call
Arguments
{
"application_id": 1024
}
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":"animal_drug_detail","arguments":{"application_id":1024}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('animal_drug_detail', {
"application_id": 1024
});
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.