# Compare product prices in Claude via a Shopping MCP

**Use case:** 

Give Claude bulk Google Shopping price checks through MCP. Ask about any products and get sellers and prices back in chat for quick comparisons.

## Input

```json
{
  "searchTerms": [
    "wireless earbuds",
    "robot vacuum"
  ],
  "country": "us",
  "language": "en",
  "maxResultsPerSearch": 10
}
```

## Output

```json
{
  "title": {
    "label": "Product Title",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "string"
  },
  "source": {
    "label": "Retailer",
    "format": "string"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "link": {
    "label": "Product Link",
    "format": "string"
  },
  "searchQuery": {
    "label": "Search Query",
    "format": "string"
  }
}
```

## About this Actor

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