npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@striderlabs/mcp-nordstrom

v1.0.0

Published

Model Context Protocol connector for Nordstrom retail

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="[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.