Michelin MCP Server

This is an implementation of the Model Context Protocol (MCP) for the Michelin dataset. It can be integrated with an LLM using the MCP protocol via

Remote serverstreamable-http

What is the Michelin MCP MCP server?

This is an implementation of the Model Context Protocol (MCP) for the Michelin dataset. It can be integrated with an LLM using the MCP protocol via the SSE deployment at the endpoint https://mcp.michelin.com. The michelin mcp mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 6 defined tools rather than through you.

Its toolset

Everything the assistant can do here goes through one of these:

  • getAllCity — Get a list of all cities ordered by the number of restaurants in descending order. Call again with the next offset to get more cities
  • getAllCountry — Get a list of all countries ordered by the number of restaurants in descending order. Call again with the next offset to get more countries
  • getAllCuisine — Get a list of all cuisines ordered by the number of restaurants in descending order. Call again with the next offset to get more cuisines
  • getAllAward — Get a list of all awards ordered by ranking ascending
  • getAllFacilitiesAndServices — Get a list of all facilities and services ordered by the number of restaurants in descending order. Call again with the next offset to get more
  • getAllRestaurant — Get a list of all restaurants with given filters. Do not provide empty strings or null values as filters. Omit the filter to get all restaurants

Adding it to your client

Being a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.

When to reach for it

Among the AI and media services options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Michelin MCP's toolset — getAllCity, getAllCountry, getAllCuisine and 3 more — is a fair guide to whether it matches your workflow. It is maintained by hrishabhn; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Michelin MCP's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Caveats

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the michelin mcp mcp server does with a few real requests.

Available tools

ToolWhat it does
getAllCityGet a list of all cities ordered by the number of restaurants in descending order. Call again with the next offset to get more cities.
getAllCountryGet a list of all countries ordered by the number of restaurants in descending order. Call again with the next offset to get more countries.
getAllCuisineGet a list of all cuisines ordered by the number of restaurants in descending order. Call again with the next offset to get more cuisines.
getAllAwardGet a list of all awards ordered by ranking ascending.
getAllFacilitiesAndServicesGet a list of all facilities and services ordered by the number of restaurants in descending order. Call again with the next offset to get more facilities and services.
getAllRestaurantGet a list of all restaurants with given filters. Do not provide empty strings or null values as filters. Omit the filter to get all restaurants.

How to install the Michelin MCP MCP server

{
    "mcpServers": {
        "Michelin": {
            "command": "npx",
            "args": ["supergateway", "--sse", "https://michelin-mcp.deno.dev"]
        }
    }
}

Configuration as documented by the project. Restart the client after saving.

Example prompts to try

  • Use Michelin MCP to getAllCity.
  • Use Michelin MCP to getAllCountry.
  • Use Michelin MCP to getAllCuisine.

Frequently asked questions

It connects Michelin MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 6 tools (getAllCity, getAllCountry, getAllCuisine, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Michelin MCP directly.