JSPM

@pullapi/walmart-scraper-mcp

1.0.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 3
  • Score
    100M100P100Q37331F
  • License MIT

Walmart MCP server — product search, details & customer reviews. For Claude, Cursor & AI agents.

Package Exports

  • @pullapi/walmart-scraper-mcp
  • @pullapi/walmart-scraper-mcp/dist/index.js

This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@pullapi/walmart-scraper-mcp) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

Walmart Scraper MCP Server

An MCP server that provides real-time Walmart data — search products, get full details with pricing and availability, and read customer reviews — for use with Claude, Cursor, and other MCP-compatible AI tools.

Features

  • Search Products — Search Walmart for products by keyword
  • Get Product — Get full Walmart product details including price, rating, and availability
  • Get Reviews — Get customer reviews for a Walmart product

Tools

search_products

Search Walmart for products by keyword

Parameters:

Name Type Required Description
query string Yes Search query
page number No Page number (default: 1)
sort string No Sort order (e.g. 'best_match', 'price_low', 'price_high')

get_product

Get full Walmart product details including price, rating, and availability

Parameters:

Name Type Required Description
product_id string Yes Walmart product ID

get_reviews

Get customer reviews for a Walmart product

Parameters:

Name Type Required Description
product_id string Yes Walmart product ID
page number No Page number (default: 1)

Configuration

Get your API key from RapidAPI.

Usage with Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "walmart": {
      "command": "npx",
      "args": ["-y", "@pullapi/walmart-scraper-mcp"],
      "env": {
        "RAPIDAPI_KEY": "your-rapidapi-key"
      }
    }
  }
}

Usage with Cursor

Add to your Cursor MCP settings (.cursor/mcp.json):

{
  "mcpServers": {
    "walmart": {
      "command": "npx",
      "args": ["-y", "@pullapi/walmart-scraper-mcp"],
      "env": {
        "RAPIDAPI_KEY": "your-rapidapi-key"
      }
    }
  }
}

License

MIT