# Read Trustpilot Reviews in Claude via MCP

**Use case:** 

Give Claude live Trustpilot access as an MCP tool and read reviewRating, reviewTitle, reviewerName, dateOfExperience and isVerifiedReview per review.

## Input

```json
{
  "companyUrls": [
    "https://www.trustpilot.com/review/wise.com",
    "https://www.trustpilot.com/review/www.shopify.com"
  ],
  "maxReviewsPerCompany": 3
}
```

## Output

```json
{
  "companyName": {
    "label": "Company",
    "format": "string"
  },
  "reviewRating": {
    "label": "Rating",
    "format": "integer"
  },
  "reviewTitle": {
    "label": "Review title",
    "format": "string"
  },
  "reviewerName": {
    "label": "Reviewer",
    "format": "string"
  },
  "dateOfExperience": {
    "label": "Date of experience",
    "format": "string"
  },
  "isVerifiedReview": {
    "label": "Verified review",
    "format": "boolean"
  },
  "reviewUrl": {
    "label": "Review URL",
    "format": "string"
  }
}
```

## About this Actor

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