walmart_reviews

Pack: traject-ecommerce · Endpoint: https://gateway.pipeworx.io/traject-ecommerce/mcp

Get customer reviews for a Walmart product by item ID — title, body, rating, date, and verified-purchase flag. Uses your BlueCart API key. Example: walmart_reviews({ item_id: “967006046”, _apiKey: “your-bluecart-key” })

Parameters

NameTypeRequiredDescription
item_idstringyesWalmart item ID, e.g. “967006046”
_apiKeystringyesYour BlueCart API key (get one at trajectdata.com)

Example call

Arguments

{
  "item_id": "967006046",
  "_apiKey": "your-traject-ecommerce-api-key"
}

curl

curl -X POST https://gateway.pipeworx.io/traject-ecommerce/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"walmart_reviews","arguments":{"item_id":"967006046","_apiKey":"your-traject-ecommerce-api-key"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('walmart_reviews', {
  "item_id": "967006046",
  "_apiKey": "your-traject-ecommerce-api-key"
});

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "traject-ecommerce": {
      "url": "https://gateway.pipeworx.io/traject-ecommerce/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build August 12, 2026