gsfa_notes
Pack: codex-gsfa · Endpoint: https://gateway.pipeworx.io/codex-gsfa/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/gsfa_notes for the schema, then POST the same URL with its arguments for the data.
Look up the qualifying notes that condition Codex GSFA food additive provisions. GSFA provisions are frequently limited by numbered notes such as “for use in ready-to-drink products only”, “as sulphur dioxide”, or “on the fat basis”, and a maximum use level is not fully specified without them. Give note numbers to resolve, or a search term to find notes by their wording.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
note_ids | array | no | Note numbers to resolve, e.g. [160, 273]. |
items | number | no | |
query | string | no | Find notes whose text contains this wording, e.g. “sulphur dioxide”. |
limit | number | no | Maximum results when searching (default 25). |
Example call
Arguments
{
"note_ids": [
160,
273
]
}
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_notes","arguments":{"note_ids":[160,273]}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('gsfa_notes', {
"note_ids": [
160,
273
]
});
More examples
{
"query": "ready-to-drink"
}
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.