Henry Wu/tripadvisor-mcp-server
Built by Metorial, the integration platform for agentic AI.
Henry Wu/tripadvisor-mcp-server
Server Summary
Search for locations by name and category
Get detailed information about specific locations
Find nearby attractions, restaurants, and hotels
View photos and reviews
Engage with an interactive vacation planning prompt
This MCP server provides access to TripAdvisor data for planning vacations, finding attractions, restaurants, and hotels.
uv venv
# On Windows
.venv\Scripts\activate
# On macOS/Linux
source .venv/bin/activate
uv add "mcp[cli]"
You can run the server directly with:
# Set your API key as an environment variable
export TRIPADVISOR_API_KEY=your_api_key_here # Linux/macOS
set TRIPADVISOR_API_KEY=your_api_key_here # Windows Command Prompt
$env:TRIPADVISOR_API_KEY="your_api_key_here" # Windows PowerShell
# Run the server
mcp run server.py
Set up the MCP Server with:
mcp install server.py
{
"tripadvisor": {
"command": "uv",
"args": [
"run",
"--with",
"mcp[cli]",
"mcp",
"run",
"PATH_TO_YOUR_PROJECT\\server.py"
],
"env": {
"TRIPADVISOR_API_KEY": "YOUR_API_KEY_HERE"
}
}
}
PATH_TO_YOUR_PROJECT
with the absolute path to your project directoryYOUR_API_KEY_HERE
with your actual TripAdvisor API key