codex_commodity_mrls
Pack: codex-mrl · Endpoint: https://gateway.pipeworx.io/codex-mrl/mcp
List every pesticide with a Codex maximum residue limit in one food, with the limit for each. Accepts a commodity id, a Codex commodity code (“FP 0226”), or a food name. Use to answer which pesticide residues are permitted in a given food and at what level.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
commodity | string | yes | Commodity id (“139”), Codex code (“FP 0226”), or food name (“apple”). |
Example call
Arguments
{
"commodity": "FP 0226"
}
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_commodity_mrls","arguments":{"commodity":"FP 0226"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('codex_commodity_mrls', {
"commodity": "FP 0226"
});
More examples
{
"commodity": "apple"
}
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.