# Walmart Product Data in Claude via MCP

**Use case:** 

Let Claude check Walmart live through MCP: search products, pull prices and sellers with price, availabilityStatus and deliveryDate fields, in-chat.

## Input

```json
{
  "search_mode": "search",
  "query": "headphones",
  "max_results": 20
}
```

## Output

```json
{
  "position": {
    "label": "Position",
    "format": "integer"
  },
  "title": {
    "label": "Title",
    "format": "string"
  },
  "price": {
    "label": "Price",
    "format": "number"
  },
  "wasPrice": {
    "label": "Was price",
    "format": "number"
  },
  "rating": {
    "label": "Rating",
    "format": "number"
  },
  "reviewCount": {
    "label": "Review count",
    "format": "integer"
  },
  "sellerName": {
    "label": "Seller name",
    "format": "string"
  },
  "sponsored": {
    "label": "Sponsored",
    "format": "boolean"
  },
  "productId": {
    "label": "Product ID",
    "format": "string"
  },
  "url": {
    "label": "URL",
    "format": "string"
  },
  "thumbnail": {
    "label": "Thumbnail",
    "format": "string"
  }
}
```

## About this Actor

This example demonstrates how to use [Walmart API | Product, Seller, Price and Review Data](https://apify.com/johnvc/walmart-api) with a specific input configuration. Visit the [Actor detail page](https://apify.com/johnvc/walmart-api) to learn more, explore other use cases, and run it yourself.