Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
6,000+ web scrapers for your AI agent, start free logo6,000+ web scrapers for your AI agent, start free

Apify gives your agent live web data: 6,000+ prebuilt scrapers and actors, MCP-ready. Sign up free with $5 in usage credits.

Try Apify free
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 48,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Query UK food hygiene ratings via MCP. Enables searching establishments by name, location, or rating.

README.md

Food Hygiene MCP Server

Query UK food hygiene ratings via MCP.

![PyPI](https://pypi.org/project/food-hygiene-mcp/) ![Python 3.14+](https://www.python.org/downloads/) ![License: MIT](https://opensource.org/licenses/MIT) ![MCP](https://modelcontextprotocol.io)

Demo

!Demo GIF

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.json
  • Windows: %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 ENOENT or spawn uv ENOENT, Claude Desktop can't find the executable. Use the full path instead (run which uvx or which uv to 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 | |-----------|------|-------------| | name | string | Business name (partial match) | | address | string | Street or area | | postcode | string | UK postcode | | latitude | float | Latitude for geo-search | | longitude | float | Longitude for geo-search | | radius_miles | float | Max distance in miles (default: 1) | | business_type | string | "restaurant", "takeaway", "pub", "cafe", "hotel", etc. | | min_rating | int | Minimum hygiene rating (0-5) | | max_rating | 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

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Search servers.