travel_mcp
総合旅行・ホスピタリティ MCP サーバー (hotel_search)
FastMCP を統合したサーバーで、ホテル宿泊、グルメ・カフェ検索(Tabelog Japan)、マルチモーダル交通・ルート案内、およびグローバル・リージョナルプラットフォーム全体の検証済み旅行者・食事レビューを並行して提供します。
主な機能
🏨 宿泊施設・ホテル
🔄 並列マルチプロバイダー検索:
search_hotels(..., provider="all")で Agoda、Booking.com、Hotels.com を同時に検索します。🔑 サイレント Chrome 認証: Agoda(VIP ティア)、Booking.com(Genius ティア)、Hotels.com(OneKey リワード)のユーザーセッションをシームレスに読み込みます。
⚖️ クロスプラットフォーム価格比較:
compare_hotel_prices(...)で 3 つのプラットフォームのリアルタイム料金を並列比較し、最安プロバイダーを見つけます。🛏️ 客室グリッドと料金パッケージ: ベッド構成、客室サイズ、朝食込み、キャンセルポリシー、料金を確認できます。
🍽️ ダイニング・レストラン・カフェ(Tabelog Japan)
🍣 グルメ検索とランキング:
search_restaurants(...)/search_tabelog(...)でベイズスコア曲線(>=3.50上位 3%、>=4.00伝説級/ミシュランティア)によるレストラン検索が可能です。🏆 受賞店ハイライト: The Tabelog Award 受賞店(Gold、Silver、Bronze)と Tabelog 100 Famous Stores(百名店)をフィルタリング・ハイライト表示します。
🍱 予算と設備: ランチとディナーの予算を分けて表示、多言語メニュー、個室、バリアフリー対応を確認できます。
📅 リアルタイム空席カレンダー:
check_restaurant_reservation(...)で予約可能日を確認できます。
🧭 マルチモーダル交通・ナビゲーション
🚶🚇🚕 経路案内と運賃:
get_transit_and_directions(...)で徒歩ルート、公共交通機関(地下鉄・バスの路線名と乗り換え)、タクシー運賃を計算します。
⭐ 検証済み施設レビュー
💬 クロスプラットフォームレビュー:
get_place_reviews(...)で Google Reviews、Kakao Maps、Tabelog のレビュースコア、星分布、旅行者のフィードバックを取得します。
Related MCP server: MCP Travel Concierge Server
プロジェクト構成
hotels-mcp/
├── pyproject.toml # PEP 517/518 build config, dependencies & CLI entrypoints
├── README.md # Documentation & usage guide
├── AGENTS.md # Agent guidelines & GitNexus code intelligence
├── CLAUDE.md # Claude developer instructions
├── tests/
│ ├── __init__.py
│ └── test_server.py # 17 live multi-provider integration test suites
└── src/
└── travel_mcp/
├── __init__.py # Package root
├── __main__.py # CLI entrypoint (`python -m travel_mcp`)
├── server.py # FastMCP server instance, tools, prompts & resources
├── models.py # Normalized Pydantic DTOs for travel, dining, and transit
└── providers/
├── __init__.py # Unified provider factory & registry
├── accommodations/ # Hotel accommodation providers
│ ├── __init__.py
│ ├── base.py # HotelProvider ABC & session loader
│ ├── agoda.py # Agoda accommodation provider
│ ├── booking.py # Booking.com accommodation provider
│ └── hotels_com.py # Hotels.com accommodation provider
├── dining/ # Restaurant & cafe providers
│ ├── __init__.py # Dining provider factory
│ ├── base.py # DiningProvider ABC
│ └── tabelog.py # Tabelog client & vacancy parser
├── routes/ # Multi-modal routing providers
│ ├── __init__.py # Route provider factory
│ ├── base.py # RouteProvider ABC
│ └── kakao.py # Kakao Maps routing provider
└── reviews/ # Unified place review providers
├── __init__.py # Review provider registry
├── base.py # ReviewProvider ABC
├── agoda.py # Agoda reviews provider
├── google.py # Google Reviews provider
├── kakao.py # Kakao Place reviews provider
└── tabelog.py # Tabelog reviews providerインストールとセットアップ
cd /Users/richardluo/Developer/hotels-mcp
uv syncテストを実行:
uv run python tests/test_server.pyサーバーを実行:
uv run travel-mcp
# or
uv run python -m travel_mcpAntigravity / MCP 設定
~/.gemini/config/mcp_config.json またはワークスペースの .agents/mcp_config.json に追加:
{
"mcpServers": {
"travel_mcp": {
"command": "uv",
"args": [
"--directory",
"/Users/richardluo/Developer/hotels-mcp",
"run",
"python",
"-m",
"travel_mcp"
],
"env": {
"PYTHONUNBUFFERED": "1"
}
}
}
}利用可能なツール
🍽️ ダイニング・レストラン・カフェ
ツール | パラメータ | 説明 |
|
| Tabelog(tabelog.com)で日本全国の高評価レストランを検索します。ベイズスコア(3.5+ 上位 3%、4.0+ 伝説級)、受賞店(Gold/Silver/Bronze)、百名店(100 Famous Stores)、ランチ/ディナー予算、予約状況を含みます。 |
|
| 完全なレストランプロフィール、受賞歴、正確な住所、GPS 座標、電話番号、予算、設備、高解像度の料理写真を取得します。 |
|
| レストラン、駅、エリア、料理ジャンルの検索キーワードをオートコンプリートします。 |
|
| レストランのリアルタイムのオンライン予約空席カレンダーと予約可能日を確認します。 |
| (search_restaurants と同じ) | Tabelog レストラン検索への直接ショートカット。 |
| (get_restaurant_details と同じ) | Tabelog レストランプロフィールへの直接ショートカット。 |
| (suggest_dining と同じ) | Tabelog オートコンプリートへの直接ショートカット。 |
| (check_restaurant_reservation と同じ) | Tabelog 空席カレンダーへの直接ショートカット。 |
🧭 マルチモーダル交通・ルート案内
ツール | パラメータ | 説明 |
|
| 任意の 2 地点(ホテル、レストラン、カフェ、駅、空港)間の徒歩ルート、公共交通機関(地下鉄・バス路線、乗り換え、運賃)、タクシー運賃を計算します。 |
|
|
|
⭐ 施設・会場レビュー
ツール | パラメータ | 説明 |
|
| Kakao Maps、Google Reviews( |
🏨 宿泊施設・ホテル
ツール | パラメータ | 説明 |
|
| 日付、人数、価格フィルターを指定して Agoda、Booking.com、Hotels.com を並列検索します。 |
|
| Agoda、Booking.com、Hotels.com の 3 社間で並列価格チェックを実行し、最安料金を見つけます。 |
|
| Agoda、Booking.com、Hotels.com 全体で目的地の都市、地区、ランドマーク、施設をオートコンプリートします。 |
|
| 施設概要、住所、設備、ポリシーを取得します。 |
|
| 客室タイプ、ベッド構成、朝食込み、キャンセルポリシー、料金を確認します。 |
|
| 検証済み旅行者レビューとカテゴリスコアを取得します。 |
|
| 公式の検証済みホテル FAQ を取得します。 |
|
| Agoda(VIP)、Booking.com(Genius)、Hotels.com(OneKey)の認証状態を確認します。 |
|
| セッションが期限切れの場合、Chrome でサインインポータルを開きます( |
MCP プロンプトとリソース(MCP 2.0)
プロンプト
plan_trip_itinerary(destination, check_in, check_out, adults, dining_preferences): ホテル、食事のおすすめ、交通ルートを組み合わせたエンドツーエンドの旅行プランニング。search_japan_dining(query, prefecture, genre, meal_type): 日本の高評価ダイニングスポットと受賞店を発見。compare_hotel_deals(hotel_name, check_in, check_out, adults, rooms): 3 社間の価格比較と特典評価。search_destination_hotels(destination, check_in, check_out, adults, rooms): 宿泊施設の検索とランキング。
リソース
travel://providers(およびhotels://providers):宿泊、食事、ルーティング、レビューの各プロバイダのレジストリ。travel://capabilities:すべての旅行ドメインにわたる完全な機能の内訳。travel://status(およびhotels://status):全プロバイダにわたるライブセッションとCookieの健全性。
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityFmaintenanceEnables LLMs to perform travel-related tasks by interacting with Google Maps and travel planning services including location search, place details, and travel time calculations.53999MIT
- AlicenseNot gradedqualityDmaintenanceEnables comprehensive travel planning by integrating Google Travel Services and Amadeus GDS for dual flight and hotel searches, plus event discovery, weather forecasting, currency conversion, and location services. Combines consumer-friendly search with professional travel industry data for optimal trip planning.6MIT
- AlicenseAqualityDmaintenanceEnables AI agents to search, browse, and book hotels from a database of 2 million properties worldwide. Provides comprehensive hotel search capabilities with location lookup, filtering by amenities, detailed property information, and integrated booking functionality.6791ISC
- AlicenseAqualityAmaintenanceEnables travel search workflows including airport lookup, route comparison, travel timing guidance, and external booking links with commission-eligible links.5281MIT
Related MCP Connectors
Aggregated travel MCP — flights, tours, activities, price checks, visas, and more.
Luxury hotel search, rate comparison, booking quotes, and secure checkout handoff.
Hotel booking MCP server. Search, book, and manage reservations across 250K+ properties worldwide.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Skyline-9/hotels-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server