Nordstrom MCP Server
A Model Context Protocol connector that allows users to search products, manage shopping bags and wishlists, and track orders on Nordstrom. It utilizes browser automation to enable seamless interaction with Nordstrom's retail platform through AI clients.
README
@striderlabs/mcp-nordstrom
Model Context Protocol (MCP) connector for Nordstrom retail. Browse products, manage your shopping bag, wishlist, and orders through any MCP-compatible AI client.
Features
| Tool | Description | Auth Required |
|---|---|---|
search_products |
Search merchandise by keyword, category, or brand | No |
get_product |
Get full product details, sizes, and images | No |
add_to_bag |
Add an item to your shopping bag | Yes |
get_bag |
View shopping bag contents and totals | Yes |
remove_from_bag |
Remove an item from bag | Yes |
get_wishlist |
View saved/favorited items | Yes |
add_to_wishlist |
Save an item to your wishlist | Yes |
check_inventory |
Check store availability near a ZIP code | No |
get_orders |
View order history | Yes |
track_order |
Track a shipment | Yes |
Installation
npm install @striderlabs/mcp-nordstrom
Authentication
Authenticated tools (bag, wishlist, orders) require Nordstrom account credentials. Set them as environment variables:
export NORDSTROM_EMAIL="you@example.com"
export NORDSTROM_PASSWORD="yourpassword"
Alternatively, save credentials to ~/.nordstrom-mcp/credentials.json:
{
"email": "you@example.com",
"password": "yourpassword"
}
The file is stored with 600 permissions (owner read/write only).
Usage with Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"nordstrom": {
"command": "npx",
"args": ["-y", "@striderlabs/mcp-nordstrom"],
"env": {
"NORDSTROM_EMAIL": "you@example.com",
"NORDSTROM_PASSWORD": "yourpassword"
}
}
}
}
Tool Reference
search_products
{
"query": "black ankle boots",
"category": "women",
"brand": "Sam Edelman"
}
get_product
{
"product_id": "7654321"
}
product_id can be a Nordstrom numeric style ID or a full product URL.
add_to_bag
{
"product_id": "7654321",
"sku_id": "sku-9876",
"quantity": 1
}
get_bag
No parameters required.
remove_from_bag
{
"item_id": "bag-item-id-from-get_bag"
}
get_wishlist
No parameters required.
add_to_wishlist
{
"product_id": "7654321"
}
check_inventory
{
"product_id": "7654321",
"size": "M",
"zip": "98101"
}
get_orders
{
"limit": 5
}
track_order
{
"order_number": "12345678"
}
Development
# Install dependencies
npm install
# Build
npm run build
# Run in dev mode
npm run dev
# Pack for distribution
npm pack
Notes
- Uses Playwright for browser automation against nordstrom.com.
- Stealth mode enabled to reduce bot detection.
- Some actions (add to bag, wishlist) may be blocked if Nordstrom adds additional CAPTCHA challenges.
- This connector is for personal use only; respect Nordstrom's Terms of Service.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.