Food
What is in it and whether the kitchen is clean
Scan a barcode for ingredients and allergens, or check a restaurant's hygiene rating.
Calling it
Everything here is public and free. No token, no account, no payment.
Methods
GET /api/v1/food/hygieneFood hygiene ratings for UK businesses, from the Food Standards Agency inspections. Takes a business name, a town or postcode, or a lat/lon to look around
| Argument | Type | Description |
|---|---|---|
name | string | Business name, e.g. 'Nandos' |
where | string | Town, street or postcode to narrow it to |
lat | number | Optional: look around this point instead |
lon | number | Optional: look around this point instead |
limit | number | How many to return, default 10, max 30 |
curl \ "https://mu-mcp.yvangodard.me/api/v1/food/hygiene"
GET /api/v1/food/productLook up a packaged food by its barcode — name, brand, ingredients, allergens, nutrition per 100g, Nutri-Score and how processed it is
| Argument | Type | Description |
|---|---|---|
barcode * | string | The barcode, 6 to 14 digits, e.g. 5000168034928 |
curl \ "https://mu-mcp.yvangodard.me/api/v1/food/product?barcode=barcode"
GET /api/v1/food/searchFind packaged foods by name or brand, with the barcode of each so one can then be looked up in full
| Argument | Type | Description |
|---|---|---|
query * | string | Product or brand name, e.g. 'hobnobs' or 'oat milk' |
limit | number | How many to return, default 10, max 25 |
curl \ "https://mu-mcp.yvangodard.me/api/v1/food/search?query=query"
The same methods are tools over MCP, and every service on this instance is in one reference. Same method, same answer, same price.


