codex_pesticide_search
Pack: codex-mrl · Endpoint: https://gateway.pipeworx.io/codex-mrl/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/codex_pesticide_search for the schema, then POST the same URL with its arguments for the data.
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
| Name | Type | Required | Description |
|---|---|---|---|
query | string | yes | Pesticide 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.