JMPR Pesticide Safety

live FoodHealthReference

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. Pairs with Codex Residue Limits, which carries the legal ceilings themselves.

3 tools
0ms auth
free tier 50 calls/day

Tools

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.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/jmpr/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
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.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("jmpr_search", {});
ask_pipeworx
// 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");