JECFA — Food Additive Safety Evaluations (WHO/FAO)
MCP serverEverything elseJECFA (Joint FAO/WHO Expert Committee on Food Additives), safety evaluations,
Available today. Use it from your connected AI after setup.
No other account needed.
Connect ahel once, and every AI you use reads what you have installed.
Then ask your AI: use JECFA — Food Additive Safety Evaluations (WHO/FAO)
From the project's README
As published by pipeworx-io/mcp-jecfa in README.md.
Safety evaluations from the Joint FAO/WHO Expert Committee on Food Additives: Acceptable Daily Intakes (ADIs), the committee's conclusions, dietary-exposure findings, and the meeting reports and toxicological monographs behind them — for food additives, flavourings, food contaminants and veterinary drug residues.
Part of Pipeworx — an MCP gateway connecting AI agents to 1576+ live data sources.
JECFA is the body whose ADI a regulator cites when it sets a limit. This pack answers "has this substance been evaluated, and what intake did the committee judge acceptable" — not "is it permitted in yogurt in the EU", which is the Codex GSFA / national-regulator question.
Tools
| Tool | What it answers |
|---|---|
jecfa_search | Look up by substance name, CAS number, or INS/E-number → ADI, CAS, functional class, chemical id |
jecfa_chemical | Full record for one id: synonyms, INS, and every evaluation JECFA has made — year, ADI, conclusions, intake findings, meeting number, TRS report, tox monograph |
jecfa_by_functional_class | Every substance in a class (sweetener, preservative, colour…) or in one of the four groups |
jecfa_functional_classes | The 71-class vocabulary, so a caller knows the exact name to pass |
jecfa_by_number | Resolve a FEMA or JECFA substance number |
jecfa_recent_evaluations | What the committee has looked at most recently |
Coverage
3,245 substances: 777 food additives, 2,289 flavouring agents, 115 veterinary drugs, 64 food contaminants. Evaluations run from the committee's earliest meetings to the present — aspartame, for instance, carries evaluations from 1981 through the 2023 re-evaluation at meeting 96.
Auth
None. Keyless, no registration, no quota.
Data sources
- Database: https://apps.who.int/food-additives-contaminants-jecfa-database/
- About JECFA: https://www.fao.org/food-safety/scientific-advice/jecfa/en/
The database has no documented API. The endpoints this pack calls are the ones backing the site's own Kendo grid, read off the page. They are undocumented and unversioned, so they can drift without notice; the pack's own gotcha comments (top of src/index.ts) record the shapes that were verified live.
Gotchas
Five upstream behaviours produce confidently wrong answers if taken at face value. All are guarded in the pack, but they matter if you extend it:
-
/SearchChemical/ByPartialNamefabricates a row. It prepends your query string as a result withId: 0and a blank ADI — the UI's "search for this literal text" affordance. Pass it through and you have invented a substance that was never evaluated. The pack drops every row withId <= 0. -
The same endpoint returns
CAS_NO: nulleven when you searched by CAS. Searching50-70-4correctly finds SORBITOL, then reports its CAS as null. Only/ChemicalData/GetBy/par/returns populated records, which is whatjecfa_searchactually calls. -
/ChemicalData/GetBy/fir/wants the character, not the id. Its companion/FilterData/Get/FirstCharacterhands you{"Id": 65, "Name": "A"}; passing65returns HTTP 500, passingAreturns 501 rows. -
INS/E-numbers are not searchable at all.
ByPartialName/951returns zero rows — INS numbers exist only on the server-rendered detail page. Sojecfa_searchresolves them throughINS_INDEX, a build-time harvest of all 777 additive detail pages (486 carry an INS). Regenerate withnode mcps/jecfa/scripts/build-ins-index.mjsafter a meeting adds substances. -
Detail-page citation rows use a different CSS class than every other field. ADI, comments, intake and meeting render in
col-sm-8; the Report, Tox Monograph and Specification rows render incol-**md**-8and wrap their text in an<a>. A parser matching onlycol-sm-8returnsnullfor all three — which reads as "JECFA published no report for this evaluation" when in fact the link to the TRS PDF was right there. Theurlon each citation is upstream's own, usually a direct PDF oniris.who.int.Bare INS numbers are genuinely ambiguous — INS 160 denotes 19 separately evaluated carotenes — so the index maps each key to a list and
jecfa_searchreturns every candidate withambiguous: truerather than picking one. Upstream writes sub-forms inconsistently (100(i)and100iboth occur), so keys are normalized to alphanumerics; the generator and the pack must keep using the same normalization or every lookup silently misses.
Quick Start
Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):
{
"mcpServers": {
"jecfa": {
"url": "https://gateway.pipeworx.io/jecfa/mcp"
}
}
}
What this endpoint actually serves
tools/list at https://gateway.pipeworx.io/jecfa/mcp returns the tools in the table
above plus the shared Pipeworx meta-tools — ask_pipeworx,
discover_tools, search_within, remember/recall and the rest of the
gateway-wide set. So the tool count you see is larger than this table: a
single-pack endpoint currently lists roughly 30 shared tools alongside the
pack's own. The connection's initialize response states its exact scope, and
is the authoritative answer for a given day.
This is deliberate, not multiplexing by accident. The meta-tools are what let a
scoped connection answer a question this pack does not cover — via
ask_pipeworx, which routes across the whole catalog — without you adding a
second MCP server. There is currently no way to mount a pack endpoint without
them; if the extra schemas cost you more context than the routing is worth,
connect to the full gateway once rather than to several pack endpoints.
Or connect to the full Pipeworx gateway to get every pack's tools listed directly, instead of just this one's:
{
"mcpServers": {
"pipeworx": {
"url": "https://gateway.pipeworx.io/mcp"
}
}
}
Both URLs reach the same gateway and the same 1576+ data sources. The
only difference is which pack's tools are listed directly; ask_pipeworx
reaches all of them from either one.
Standalone (no gateway account)
This package also runs as a local stdio MCP server — no Pipeworx account, no gateway round-trip:
{
"mcpServers": {
"jecfa": {
"command": "npx",
"args": ["-y", "@pipeworx/mcp-jecfa"]
}
}
}
Or run it directly to confirm it starts:
npx -y @pipeworx/mcp-jecfa
It speaks MCP over stdin/stdout and answers initialize/tools/list/tools/call
for only this pack's tools — none of the shared meta-tools the gateway
connection above adds. Same source, same tools, no ask_pipeworx routing.
Using with ask_pipeworx
Instead of calling tools directly, you can ask questions in plain English — this works on the pack endpoint above as well as on the full gateway:
ask_pipeworx({ question: "your question about Jecfa data" })
The gateway picks the right tool and fills the arguments automatically.
More
License
MIT
Advanced
- Delivery
- jecfa MCP server → your ahel gateway (mcp.ahel.ai) → every connected AI client.
- Catalog kind
- mcp-server
- Gateway key
io-github-pipeworx-io-jecfa- Source
- github.com/pipeworx-io/mcp-jecfa
- Hosted endpoint
https://gateway.pipeworx.io/jecfa/mcp