codex_pesticide_search

Pack: codex-mrl · Endpoint: https://gateway.pipeworx.io/codex-mrl/mcp

Find pesticides in the Codex Alimentarius residue database by name or partial name (glyphosate, chlorpyrifos, 2,4-D). Returns each match with the id needed to fetch its maximum residue limits. Use when you have a pesticide name and want its Codex record.

Parameters

NameTypeRequiredDescription
querystringyesPesticide name or fragment, e.g. “glyphosate”.

Example call

Arguments

{
  "query": "glyphosate"
}

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

TypeScript (@pipeworx/sdk)

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

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

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.

Regenerated from source · build August 6, 2026