tabelog-explorer

DigiBugCat/tabelog-explorer

3.2

If you are the rightful owner of tabelog-explorer and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to dayong@mcphub.com.

An MCP server and CLI for searching Tabelog, Japan's largest restaurant review site.

Tools
9
Resources
0
Prompts
0

Tabelog MCP Server

An MCP server and CLI for searching Tabelog, Japan's largest restaurant review site.

Tabelog ratings are notoriously strict - a 3.5+ is excellent, 4.0+ is exceptional. Most quality restaurants score 3.0-3.8.

Quick Start

Deploy to FastMCP Cloud

  1. Go to fastmcp.cloud and sign in with GitHub
  2. Create a new project pointing to this repo
  3. Set entrypoint to tabelog/mcp_server.py:mcp
  4. Your server will be live at https://your-project.fastmcp.app/mcp

Run Locally

# Install
uv pip install -e .

# Run MCP server
fastmcp run tabelog/mcp_server.py:mcp

# Or use the CLI
tabelog search --area tokyo --genre ramen

MCP Tools

ToolDescription
search_restaurantsSearch by area, genre, price, filters
get_restaurant_infoGet details (hours, address, courses)
get_reviewsFetch user reviews
get_restaurant_info_batchGet details for multiple restaurants (parallel)
get_reviews_batchFetch reviews for multiple restaurants (parallel)
get_areasList neighborhoods for a region
list_genresList cuisine types
list_available_filtersList search filters
list_price_tiersList budget filter options

Example Usage

Search for ramen in Tokyo:
  search_restaurants(area="tokyo", genre="ramen")

High-end sushi dinner in Ginza (¥20,000+):
  search_restaurants(area="tokyo/A1301", genre="sushi", meal_type="dinner", price_min=20000)

Solo-friendly counter seats:
  search_restaurants(area="tokyo", filters="solo,counter")

CLI Commands

# Search restaurants
tabelog search "銀座" --genre sushi --area tokyo
tabelog search --genre ramen --solo --lunch

# Get restaurant details
tabelog info 13002251

# Read reviews
tabelog reviews 13002251 --pages 3

# List areas/genres
tabelog areas tokyo
tabelog genres

Search Filters

--private-room --non-smoking --lunch --reservable --solo --date --counter --tatami --card-ok --parking --kids-ok --sunday-open --all-you-can-drink --all-you-can-eat

License

MIT