uk_food_hygiene_search

Pack: uk-food-hygiene · Endpoint: https://gateway.pipeworx.io/uk-food-hygiene/mcp

Search UK restaurant food hygiene ratings from the Food Standards Agency FHRS — answers “is this restaurant clean”, “is this takeaway safe to eat at”, “food hygiene rating of X”. Search by business name and/or address (a town, street, or postcode works), or by latitude/longitude + radius_miles for hygiene ratings near a point. Filter by business_type (restaurant, takeaway, pub, hotel, supermarket, mobile caterer…) and min_rating (1-5). Returns rating (0-5 in England/Wales/NI; Scotland uses “Pass”/“Improvement Required” under FHIS), inspection date, address, and inspection sub-scores. Example: uk_food_hygiene_search({ name: “Nandos”, address: “Leeds” })

Parameters

NameTypeRequiredDescription
namestringnoBusiness name to search, e.g. “Nandos”, “Golden Dragon”
addressstringnoAny part of the address — town, street, or postcode, e.g. “Leeds”, “Baker Street”, “SW1A 1AA”
business_typestringnoOptional type filter, e.g. “restaurant”, “takeaway”, “pub”, “hotel”, “supermarket”, “school”, “mobile caterer”
min_ratingnumbernoMinimum FHRS rating 1-5 (5 = best). Filters to numerically-rated FHRS establishments, so Scottish FHIS results drop out
latitudenumbernoLatitude for geo search (use with longitude)
longitudenumbernoLongitude for geo search (use with latitude)
radius_milesnumbernoGeo search radius in miles (default 2, max 30). Only used with latitude/longitude
limitnumbernoMax results to return, 1-30 (default 10)

Example call

Arguments

{
  "name": "Nandos",
  "address": "Leeds"
}

curl

curl -X POST https://gateway.pipeworx.io/uk-food-hygiene/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"uk_food_hygiene_search","arguments":{"name":"Nandos","address":"Leeds"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('uk_food_hygiene_search', {
  "name": "Nandos",
  "address": "Leeds"
});

More examples

{
  "latitude": 51.5074,
  "longitude": -0.1278,
  "radius_miles": 1,
  "business_type": "takeaway",
  "min_rating": 4,
  "limit": 15
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "uk-food-hygiene": {
      "url": "https://gateway.pipeworx.io/uk-food-hygiene/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 29, 2026