expedia-travel-recommendations-mcp
OfficialProvides hotel, flight, activity, and car rental recommendations from Expedia's travel APIs.
Click on "Install 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., "@expedia-travel-recommendations-mcpfind affordable hotels in Tokyo with pool"
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.
π Expedia Travel Recommendations MCP Server
This project provides an MCP (Model Context Protocol) server that exposes Expedia Travel Recommendations (hotels, flights, activities, and cars) via both stdio and streamable-http protocolsβideal for LLM integrations and web-based applications.
β¨ Features
π MCP server integration for Expedia's travel recommendation APIs
π¦ Supports both
stdioandstreamable-httpprotocolsπ¨ Hotel, βοΈ Flight, πΊοΈ Activity, and π Car rental recommendations
π API key-based secure access
Related MCP server: travel-mcp-server
π Prerequisites
Python 3.11+
Expedia API key
β‘ Running the MCP Server
Run with stdio protocol (LLM Integration)
export EXPEDIA_API_KEY="your_api_key_here"
uvx expedia_travel_recommendations_mcp --protocol "stdio"Run with streamable-http protocol (Web Clients)
export EXPEDIA_API_KEY="your_api_key_here"
uvx expedia_travel_recommendations_mcp --protocol "streamable-http"Access it at:
http://0.0.0.0:9900/mcp
π³ Running with Docker
Using Docker Compose (Recommended)
docker run \
-p 9900:9900 \
-e EXPEDIA_API_KEY=your_api_key_here \
expediagroup/expedia-travel-recommendations-mcpAccessible at:
http://0.0.0.0:9900/mcp
βοΈ MCP Client Configuration
Using streamable-http (Recommended)
{
"mcpServers": {
"expedia-recommendation": {
"url": "http://localhost:9900/mcp"
}
}
}Using stdio
{
"mcpServers": {
"expedia-travel-recommendations": {
"command": "uvx",
"args": [
"expedia_travel_recommendations_mcp",
"--protocol",
"stdio"
],
"env": {
"EXPEDIA_API_KEY": "your_api_key_here"
}
}
}
}π§ͺ Example Query (Hotel)
{
"query": {
"destination": "Seattle",
"check_in": "2025-05-01",
"check_out": "2025-05-05",
"property_types": ["HOTEL", "RESORT"],
"amenities": ["POOL", "SPA"],
"guest_rating": "WONDERFUL",
"sort_type": "CHEAPEST"
}
}π API Endpoints
These are exposed when using the
streamable-httpprotocol.
POST /expedia/hotelsβ Hotel recommendationsPOST /expedia/flightsβ Flight recommendationsPOST /expedia/activitiesβ Activity recommendationsPOST /expedia/carsβ Car rental recommendations
π§βπ» Example Clients
See the examples/ folder for client scripts.
1οΈβ£ stdio-based Client
Make sure the virtual env is activated (install.sh must be run first):
source install_env/bin/activate
python examples/mcp_client_stdio.py2οΈβ£ streamable-http Client
Ensure MCP server is running:
python examples/mcp_client_streamable_http.pyπ License
Licensed under the Apache License 2.0.
This server cannot be installed
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 Connectors
Flight search MCP server providing search, pagination, and itinerary details for AI assistants.
Hotel booking MCP server. Search, book, and manage reservations across 250K+ properties worldwide.
Skiplagged MCP Server for flight search, hotel booking, and travel planning
AI marketplace β flights, tours, activities, transport & more via MCP. No auth required.
Related MCP Servers
- AlicenseBqualityCmaintenanceMCP server that enables LLMs to interact with Tripadvisor API, supporting location data, reviews, and photos through standardized MCP interfaces564MIT
- FlicenseAqualityDmaintenanceAn AI-powered travel planner MCP server enabling flight and hotel search, weather forecasts, point-of-interest discovery, itinerary generation, and budget management.8-
- FlicenseNot gradedqualityDmaintenanceMCP server for travel program search, comparison, and booking via Yourttoo API, optimized for LLMs with token-saving responses.-
- AlicenseNot gradedqualityCmaintenanceCoordinates flights, hotels, events, weather, currency, and traffic data through a single MCP server, enabling comprehensive trip planning via natural language prompts.MIT