codex_vetdrug_search
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_search for the schema, then POST the same URL with its arguments for the data.
List or search the veterinary drugs for which Codex has adopted maximum residue limits in animal-derived food — antibiotics, antiparasitics, growth promoters. Omit the query to list all of them with the year each was last adopted.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
query | string | no | Drug name or fragment. Omit to list all. |
Example call
Arguments
{
"query": "ivermectin"
}
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_search","arguments":{"query":"ivermectin"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('codex_vetdrug_search', {
"query": "ivermectin"
});
More examples
{}
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.