Command Palette

Search for a command to run...

UnylyUnyly
Browse all

Nordstrom Server

FreeMaintained

A Model Context Protocol connector that allows users to search products, manage shopping bags and wishlists, and track orders on Nordstrom. It utilizes browser

GitHubEmbed

About

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

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="[email protected]"
export NORDSTROM_PASSWORD="yourpassword"

Alternatively, save credentials to ~/.nordstrom-mcp/credentials.json:

{
  "email": "[email protected]",
  "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": "[email protected]",
        "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.

from github.com/markswendsen-code/mcp-nordstrom

Install Nordstrom Server in Claude Desktop, Claude Code & Cursor

Recommended · one command, every IDE
unyly install nordstrom-mcp-server

Installs into Claude Desktop, Claude Code, Cursor & VS Code — handles npx, uvx and build-from-source repos for you.

First time? Get the CLI: curl -fsSL https://unyly.org/install | sh

Or configure manually

Run in your terminal:

claude mcp add nordstrom-mcp-server --env NORDSTROM_EMAIL="" --env NORDSTROM_PASSWORD="" -- npx -y @striderlabs/mcp-nordstrom

Step-by-step: how to install Nordstrom Server

FAQ

Is Nordstrom Server MCP free?

Yes, Nordstrom Server MCP is free — one-click install via Unyly at no cost.

Does Nordstrom Server need an API key?

Yes, it requires environment variables: NORDSTROM_EMAIL, NORDSTROM_PASSWORD. Unyly injects them into the config during install.

Is Nordstrom Server hosted or self-hosted?

A hosted option is available: Unyly runs the server in the cloud, no local setup required.

How do I install Nordstrom Server in Claude Desktop, Claude Code or Cursor?

Open Nordstrom Server on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Changes

Versions and requested access over time.

  • New version published
  • New version published

Related MCPs

Playwright

Browser automation, scraping, screenshots

Microsoftby Microsoft

Puppeteer

Browser automation and web scraping.

modelcontextprotocolby modelcontextprotocol

opentabs-dev/opentabs

Plugin-based MCP server + Chrome extension that gives AI agents access to web applications through the user's authenticated browser session. 100+ plugins with a

opentabs-devby opentabs-dev

robhunter/agentdeals

1,500+ developer infrastructure deals, free tiers, and startup programs across 54 categories. Search deals, compare vendors, plan stacks, and track pricing chan

robhunterby robhunter

hlydecker/ucsc-genome-mcp

MCP server to interact with the UCSC Genome Browser API, letting you find genomes, chromosomes, and more.

hlydeckerby hlydecker

34892002/bilibili-mcp-js

A MCP server that supports searching for Bilibili content. Provides LangChain integration examples and test scripts.

34892002by 34892002

achiya-automation/safari-mcp

Native Safari browser automation for AI agents with 80+ tools. No Chrome dependency, optimized for Apple Silicon with 60% less CPU overhead.

achiya-automationby achiya-automation

agent-infra/mcp-server-browser

Browser automation capabilities using Puppeteer, both support local and remote browser connection.

bytedanceby bytedance

aparajithn/agent-scraper-mcp

Web scraping MCP server for AI agents. 6 tools: clean content extraction, structured scraping with CSS selectors, full-page screenshots via Playwright, link ext

aparajithnby aparajithn

apireno/DOMShell

Browse the web using filesystem commands (ls, cd, grep, click). 38 MCP tools map Chrome's Accessibility Tree to a virtual filesystem via a Chrome Extension.

apirenoby apireno

Compare Nordstrom Server with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All browse MCPs