JMPR Pesticide Safety
live FoodHealthReferenceAcceptable Daily Intakes and Acute Reference Doses set by the FAO/WHO Joint Meeting on Pesticide Residues — the toxicological assessment behind every Codex pesticide limit, with each meeting's conclusions and reports. Pairs with Codex Residue Limits, which carries the legal ceilings themselves.
Tools
jmpr_search Find pesticides evaluated by the FAO/WHO Joint Meeting on Pesticide Residues (JMPR) by name or partial name. Returns matching pesticide names, which are the identifier used to fetch a full safety eval
No parameters required.
Try it
jmpr_chemical Get the full JMPR safety evaluation for one pesticide: its Acceptable Daily Intake (ADI) and Acute Reference Dose (ARfD) in mg/kg body weight, the year each was set, the meeting's conclusions, its CAS
No parameters required.
Try it
jmpr_list_pesticides List every pesticide the FAO/WHO Joint Meeting on Pesticide Residues has evaluated. Use to survey coverage or to check whether a substance has ever been assessed at all — absence means JMPR has not ev
No parameters required.
Try it
Test with curl
The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.
curl -X POST https://gateway.pipeworx.io/jmpr/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' curl -X POST https://gateway.pipeworx.io/jmpr/mcp \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"jmpr_search","arguments":{}}}' Use with the SDK
Install @pipeworx/sdk to call tools from any TypeScript/Node project.
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("jmpr_search", {}); // Or ask in plain English:
const answer = await px.ask("acceptable daily intakes and acute reference doses set by the fao/who joint meeting on pesticide residues — the toxicological assessment behind every codex pesticide limit, with each meeting's conclusions and reports");