jmpr_search

Pack: jmpr · Endpoint: https://gateway.pipeworx.io/jmpr/mcp

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 evaluation. Use when you have a pesticide name and want its toxicological assessment.

Parameters

NameTypeRequiredDescription
querystringyesPesticide name or fragment, e.g. “chlorpyrifos” or “pyrethr”.

Example call

Arguments

{
  "query": "chlorpyrifos"
}

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_search","arguments":{"query":"chlorpyrifos"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('jmpr_search', {
  "query": "chlorpyrifos"
});

More examples

{
  "query": "glyphosate"
}

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.

Regenerated from source · build August 6, 2026