uk_food_hygiene_details
Pack: uk-food-hygiene · Endpoint: https://gateway.pipeworx.io/uk-food-hygiene/mcp
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 / confidence in management (0 = best, higher = worse), full address, local authority contact, and geocode. Use to check how clean or safe a specific UK restaurant, takeaway, cafe, or pub is. Example: uk_food_hygiene_details({ fhrsid: 537122 })
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
fhrsid | number | yes | FHRSID of the establishment, from uk_food_hygiene_search |
Example call
Arguments
{
"fhrsid": 537122
}
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_details","arguments":{"fhrsid":537122}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('uk_food_hygiene_details', {
"fhrsid": 537122
});
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.