UK Food Hygiene

live FoodGovernment

UK food hygiene ratings (FHRS/FHIS) from the Food Standards Agency — search restaurants, takeaways, and food businesses by name, town, or location and get official 0-5 hygiene ratings with inspection score breakdowns.

2 tools
0ms auth
free tier 50 calls/day

Tools

uk_food_hygiene_details

Get the full Food Standards Agency FHRS inspection record for one UK establishment by its FHRSID (from uk_food_hygiene_search) — rating, inspection date, sub-scores for hygiene / structural compliance

No parameters required.

Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/uk-food-hygiene/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/uk-food-hygiene/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"uk_food_hygiene_search","arguments":{}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("uk_food_hygiene_search", {});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("uk food hygiene ratings (fhrs/fhis) from the food standards agency — search restaurants, takeaways, and food businesses by name, town, or location and get official 0-5 hygiene ratings with inspection score breakdowns");