# Tripadvisor Reviews in Claude via MCP

**Use case:** 

Give Claude live Tripadvisor data through MCP: search places, then pull reviews with rating, tripType and author fields, mid-conversation. Free tier friendly.

## Input

```json
{
  "search_mode": "search",
  "query": "hotels in paris",
  "place_types": [],
  "max_results": 20,
  "tripadvisor_domain": "www.tripadvisor.com"
}
```

## Output

```json
{
  "resultType": {
    "label": "Result type",
    "format": "string"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "placeType": {
    "label": "Place type",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Review count",
    "format": "integer"
  },
  "location": {
    "label": "Location",
    "format": "string"
  },
  "placeId": {
    "label": "Place ID",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  },
  "thumbnail": {
    "label": "Thumbnail",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Tripadvisor API | Hotel, Restaurant and Attraction Reviews](https://apify.com/johnvc/tripadvisor-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/johnvc/tripadvisor-api) to learn more, explore other use cases, and run it yourself.