animal_drug_monthly_updates
Pack: veterinary-fda · Endpoint: https://gateway.pipeworx.io/veterinary-fda/mcp
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 animal drug approvals changed recently”, “give me the latest Green Book update”. Returns year, month and a direct PDF URL per issue.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
year | number | no | Optional: only this publication year, e.g. 2026. |
limit | number | no | Max issues to return, newest first (1-120, default 12). |
Example call
Arguments
{
"limit": 3
}
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_monthly_updates","arguments":{"limit":3}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('animal_drug_monthly_updates', {
"limit": 3
});
More examples
{
"year": 2026
}
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.