gsfa_food_category_additives
Pack: codex-gsfa · Endpoint: https://gateway.pipeworx.io/codex-gsfa/mcp
List every food additive permitted in a given Codex GSFA food category, with each maximum use level. Includes provisions inherited from parent categories, since a GSFA provision applies to a category and all of its subcategories. Use to see what additives may legally be used in a particular food.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
food_category | string | yes | GSFA food category number (“01.4.4”) or its name (“cream analogues”). |
include_inherited | boolean | no | Include provisions stated on parent categories (default true). |
limit | number | no | Maximum results (default 200). |
Example call
Arguments
{
"food_category": "14.1.5"
}
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_food_category_additives","arguments":{"food_category":"14.1.5"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('gsfa_food_category_additives', {
"food_category": "14.1.5"
});
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.