codex_pesticide_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_pesticide_mrls for the schema, then POST the same URL with its arguments for the data.
Get the internationally agreed maximum residue limits for one pesticide across every food commodity Codex has set a limit for, plus its Acceptable Daily Intake, the chemical definition of the residue being measured, and its pesticide class. Accepts a pesticide name or a numeric id. Use to answer how much of a pesticide is legally permitted in foods.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
pesticide | string | yes | Pesticide name (“glyphosate”) or numeric id (“158”). |
Example call
Arguments
{
"pesticide": "glyphosate"
}
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_pesticide_mrls","arguments":{"pesticide":"glyphosate"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('codex_pesticide_mrls', {
"pesticide": "glyphosate"
});
More examples
{
"pesticide": "158"
}
{
"pesticide": "chlorothalonil"
}
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.