jmpr_list_pesticides
Pack: jmpr · Endpoint: https://gateway.pipeworx.io/jmpr/mcp
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 evaluated it, which is different from it having no safe level.
Example call
Arguments
{}
curl
curl -X POST https://gateway.pipeworx.io/jmpr/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"jmpr_list_pesticides","arguments":{}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('jmpr_list_pesticides', {});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"jmpr": {
"url": "https://gateway.pipeworx.io/jmpr/mcp"
}
}
}
See Getting Started for client-specific install steps.