gsfa_search_additive

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

Find food additives in the Codex GSFA by INS number, name, or synonym. Returns each match with its INS number, name, synonyms, technological functional classes (thickener, preservative, colour, and so on), and how many food-category provisions it holds. Use to resolve an additive name or E-number to its GSFA entry before looking up permitted uses.

Parameters

NameTypeRequiredDescription
querystringyesINS number, additive name, or synonym.
limitnumbernoMaximum results (default 20).

Example call

Arguments

{
  "query": "461"
}

curl

curl -X POST https://gateway.pipeworx.io/codex-gsfa/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"gsfa_search_additive","arguments":{"query":"461"}}}'

TypeScript (@pipeworx/sdk)

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

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

More examples

{
  "query": "xanthan gum"
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "codex-gsfa": {
      "url": "https://gateway.pipeworx.io/codex-gsfa/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 6, 2026