codex_vetdrug_mrls
Pack: codex-mrl · Endpoint: https://gateway.pipeworx.io/codex-mrl/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/codex_vetdrug_mrls for the schema, then POST the same URL with its arguments for the data.
Get the Codex maximum residue limits for one veterinary drug, broken down by animal species and tissue (cattle muscle, liver, kidney, milk; fish fillet; poultry eggs), with its functional class and the JECFA evaluations behind each limit. Accepts a drug name or numeric id. An empty limit list is meaningful — Codex sets no MRL for substances like chloramphenicol that it judges unsafe at any level.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
drug | string | yes | Veterinary drug name (“abamectin”) or numeric id (“1”). |
Example call
Arguments
{
"drug": "abamectin"
}
curl
curl -X POST https://gateway.pipeworx.io/codex-mrl/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"codex_vetdrug_mrls","arguments":{"drug":"abamectin"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('codex_vetdrug_mrls', {
"drug": "abamectin"
});
More examples
{
"drug": "chloramphenicol"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"codex-mrl": {
"url": "https://gateway.pipeworx.io/codex-mrl/mcp"
}
}
}
See Getting Started for client-specific install steps.