MCP Hub
Back to servers

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.

glama
Updated
Mar 14, 2026

@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

ToolDescriptionAuth Required
search_productsSearch merchandise by keyword, category, or brandNo
get_productGet full product details, sizes, and imagesNo
add_to_bagAdd an item to your shopping bagYes
get_bagView shopping bag contents and totalsYes
remove_from_bagRemove an item from bagYes
get_wishlistView saved/favorited itemsYes
add_to_wishlistSave an item to your wishlistYes
check_inventoryCheck store availability near a ZIP codeNo
get_ordersView order historyYes
track_orderTrack a shipmentYes

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.

Reviews

No reviews yet

Sign in to write a review