gsfa_additive_provisions
Pack: codex-gsfa · Endpoint: https://gateway.pipeworx.io/codex-gsfa/mcp
List every food category in which a given food additive is permitted under the Codex GSFA, with the maximum use level for each. Separates Table 1 and 2 provisions (which carry a specific maximum level) from Table 3 provisions (permitted under good manufacturing practice with no numeric limit). Use to see the full permitted scope of one additive across all foods.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
additive | string | yes | INS number, name, or synonym — e.g. “415”, “xanthan gum”. |
table | string | no | Filter to one table: “table1_2” or “table3”. Omit for both. |
limit | number | no | Maximum provisions returned (default 200). |
Example call
Arguments
{
"additive": "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_additive_provisions","arguments":{"additive":"461"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('gsfa_additive_provisions', {
"additive": "461"
});
More examples
{
"additive": "461",
"table": "table3"
}
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.