@pullapi/walmart-scraper-mcp
v1.0.0
Published
Walmart MCP server — product search, details & customer reviews. For Claude, Cursor & AI agents.
Maintainers
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
