food-hygiene-mcp
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@food-hygiene-mcpWhat's the hygiene rating for Dishoom in London?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Food Hygiene MCP Server
Query UK food hygiene ratings via MCP.
Demo

Related MCP server: uk-charities-mcp
Quick Start
Works with any MCP-compatible client (Claude Desktop, VS Code, Cursor, etc.). Example for Claude Desktop:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.json
Option 1: Via PyPI (recommended)
{
"mcpServers": {
"food-hygiene": {
"command": "uvx",
"args": ["food-hygiene-mcp"]
}
}
}Option 2: From source
git clone https://github.com/w4sspr/food-hygiene-mcp.git
cd food-hygiene-mcp
uv sync{
"mcpServers": {
"food-hygiene": {
"command": "uv",
"args": ["run", "--directory", "/path/to/food-hygiene-mcp", "food-hygiene-mcp"]
}
}
}Troubleshooting: If you get
spawn uvx ENOENTorspawn uv ENOENT, Claude Desktop can't find the executable. Use the full path instead (runwhich uvxorwhich uvto find it, e.g.,/Users/you/.local/bin/uvx).
Restart Claude Desktop, then try:
"What's the hygiene rating for Dishoom in London?"
Example Prompts
"What's the hygiene rating for Dishoom in London?"
"Find restaurants in Manchester with at least a 4-star rating"
"Show me takeaways in SW1A 1AA"
"Get full inspection details for establishment 1662145"
"Find cafes within 2 miles of 51.5074, -0.1278"
Tools
search_establishments
Search for food establishments by name, location, or rating.
Parameter | Type | Description |
| string | Business name (partial match) |
| string | Street or area |
| string | UK postcode |
| float | Latitude for geo-search |
| float | Longitude for geo-search |
| float | Max distance in miles (default: 1) |
| string | "restaurant", "takeaway", "pub", "cafe", "hotel", etc. |
| int | Minimum hygiene rating (0-5) |
| int | Maximum hygiene rating (0-5) |
get_establishment_details
Get full details for a specific establishment by FHRS ID.
Returns: rating breakdown (hygiene, structural, confidence in management), inspection date, local authority info.
Limitations
England, Wales, and Northern Ireland only — Scotland uses a different system
No aggregate statistics — can't calculate "% of 5-star restaurants" without fetching all data
Limited business types — ~15 common types mapped; niche categories may not work
Geo-search requires coordinates — city names alone won't trigger distance filtering
Roadmap
get_local_authority_stats— aggregate ratings by area (requires pagination through all establishments)Scotland support via FHIS API
Cache business type mappings
See Also
Why I built this: MCP integration with UK public sector data APIs. See also: uk-charities-mcp for Charity Commission data.
Data Source
FSA Food Hygiene Rating Scheme API — free, public, no authentication required.
License
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
Access CQC care ratings, NHS health services, and food hygiene data across the UK
UK Food Hygiene MCP — Food Standards Agency food hygiene ratings (FHRS)
USDA FoodData Central nutrient lookup, FDA recall watch, EU FMCG labelling via remote MCP
UK Police MCP — wraps the UK Police Data API (free, no auth)
Related MCP Servers
- AlicenseBqualityCmaintenanceMCP server for UK Freedom of Information research. Connects AI assistants to WhatDoTheyKnow — the UK's largest FOI request platform to search requests, read responses, look up public authorities, and draft new requests.8MIT
- AlicenseAqualityDmaintenanceQuery UK charity data via MCP, including charity details, financial history, trustees, and governing documents.4MIT
- AlicenseAqualityDmaintenanceMCP server providing access to comprehensive UK school data from official government sources, including search, details, near-postcode, comparisons, Ofsted ratings, and DfE education datasets.11MIT
- FlicenseNot gradedqualityAmaintenanceQuery food inspection grades and violations for Charlotte/Mecklenburg County, NC, with tools for searching establishments, getting details, finding nearby, and score distributions.-