Travel reviews and booking
## TripAdvisor MCP Server: Travel Reviews and Discovery The **TripAdvisor MCP Server** integrates the world's largest travel platform directly into Google Antigravity, enabling AI assistants to search reviews, discover attractions, and access travel recommendations programmatically. This integration brings travel research and discovery to your development workflow. ### Why TripAdvisor MCP? - **Trusted Reviews**: Access millions of authentic traveler reviews and ratings - **Comprehensive Discovery**: Find hotels, restaurants, attractions, and experiences - **Photo Gallery**: Browse traveler photos for authentic destination previews - **Ranking Data**: Access popularity rankings and traveler choice awards - **Local Insights**: Discover hidden gems and local recommendations ### Key Features #### 1. Review Search ```python from anthropic import Anthropic client = Anthropic() response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Find the top-rated restaurants in Rome with reviews mentioning authentic cuisine" }], tools=[{ "name": "tripadvisor_reviews", "description": "Search reviews" }] ) ``` #### 2. Attraction Discovery ```python # Discover attractions response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Find top attractions in Barcelona suitable for families with children" }], tools=[{"name": "tripadvisor_attractions", "description": "Find attractions"}] ) ``` #### 3. Hotel Research ```python # Research accommodations response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Compare hotel reviews for properties near Central Park in NYC" }], tools=[{"name": "tripadvisor_hotels", "description": "Hotel reviews"}] ) ``` #### 4. Experience Search ```python # Find experiences response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Find highly-rated food tours and cooking classes in Tokyo" }], tools=[{"name": "tripadvisor_experiences", "description": "Find experiences"}] ) ``` ### Configuration ```json { "mcpServers": { "tripadvisor": { "command": "npx", "args": ["-y", "@anthropic/mcp-tripadvisor"], "env": { "TRIPADVISOR_API_KEY": "your-tripadvisor-api-key" } } } } ``` ### Use Cases **Travel Research**: Build apps that help travelers research destinations and plan trips. **Restaurant Discovery**: Create dining recommendation features with authentic reviews. **Itinerary Building**: Suggest attractions and activities for trip itineraries. **Review Aggregation**: Aggregate and analyze reviews for travel recommendations. The TripAdvisor MCP Server brings travel discovery and reviews directly into your development workflow, enabling informed travel planning.
{
"mcpServers": {
"tripadvisor": {
"mcpServers": {
"tripadvisor": {
"env": {
"TRIPADVISOR_API_KEY": "your-api-key"
},
"args": [
"-y",
"tripadvisor-mcp-server"
],
"command": "npx"
}
}
}
}
}