Strider Wayfair

Shop Wayfair furniture and home goods via Strider Labs MCP connector. Search products, compare prices, check delivery estimates, and track orders.

MIT-0 · Free to use, modify, and redistribute. No attribution required.
0 · 41 · 1 current installs · 1 all-time installs
MIT-0
Security Scan
VirusTotalVirusTotal
Benign
View report →
OpenClawOpenClaw
Benign
medium confidence
Purpose & Capability
The name and description (Wayfair shopping via a Strider Labs MCP connector) match the SKILL.md: it instructs the agent to run an @striderlabs/mcp-wayfair npm package via npx. Requiring npx is proportional to running an MCP connector distributed as an npm package.
Instruction Scope
The instructions are scoped to installing/running the MCP connector and performing searches, cart operations, delivery checks, and OAuth-based authentication. They do not request unrelated environment variables or access to system files, but they assert that per-user tokens will be stored and order history 'synced automatically' without describing storage location or retention—this is expected for a connector but lacks detail about data handling and persistence.
Install Mechanism
No install spec is embedded in the skill (instruction-only), but SKILL.md directs use of npm/npx to fetch and run @striderlabs/mcp-wayfair from the npm registry. Using npm/npx is common for JS connectors but means remote code will be downloaded and executed (npx -y suppresses prompts). This is an expected mechanism but carries the usual risks of running third-party packages.
Credentials
The skill declares no required environment variables or secrets. It uses OAuth for Wayfair authentication, which is appropriate and expected for this kind of connector; no unrelated credentials are requested.
Persistence & Privilege
The skill does not request always:true and has standard autonomous invocation settings. The connector claims to store per-user tokens and sync order history (normal for this functionality). There is no instruction to modify other skills or system-wide configs.
Assessment
This skill is coherent with its description, but it depends on running a third-party npm package (@striderlabs/mcp-wayfair) via npx which will download and execute code on your machine. Before installing or enabling it: 1) Review the npm package page (maintainer, download stats, recent versions, source repository) and inspect the package source if possible. 2) Confirm how and where OAuth tokens and order data are stored and encrypted by the connector. 3) Prefer pinning to a specific package version or installing it from a vetted source rather than relying on npx to fetch the latest automatically. 4) Avoid running it on highly sensitive or production machines until you’ve validated the package and privacy behavior.

Like a lobster shell, security has layers — review code before you run it.

Current versionv1.0.0
Download zip
latestvk9758zg632fn9xyamrdrsk33k183a9at

License

MIT-0
Free to use, modify, and redistribute. No attribution required.

Runtime requirements

Binsnpx

SKILL.md

Strider Wayfair Connector

MCP connector for Wayfair home goods shopping. Part of the Strider Labs action execution layer for AI agents.

Installation

npm install @striderlabs/mcp-wayfair

MCP Configuration

Add to your MCP client configuration (Claude Desktop, Cursor, etc.):

{
  "mcpServers": {
    "wayfair": {
      "command": "npx",
      "args": ["-y", "@striderlabs/mcp-wayfair"]
    }
  }
}

Available Tools

wayfair.search_products

Search Wayfair's catalog.

Input Schema:

{
  "query": "string",
  "category": "furniture | bedding | rugs | lighting | decor | outdoor",
  "price_min": "number (optional)",
  "price_max": "number (optional)",
  "style": "modern | traditional | farmhouse | industrial (optional)"
}

Output:

{
  "products": [{
    "sku": "W001234567",
    "name": "Mid-Century Modern Sofa",
    "price": 899.99,
    "original_price": 1199.99,
    "rating": 4.6,
    "reviews_count": 1247,
    "delivery_estimate": "Mar 25-28",
    "free_shipping": true,
    "image_url": "https://..."
  }]
}

wayfair.get_product_details

Get full product information.

Input Schema:

{
  "sku": "string"
}

wayfair.check_delivery

Get delivery estimate for your address.

Input Schema:

{
  "sku": "string",
  "zip_code": "string"
}

wayfair.add_to_cart

Add product to shopping cart.

wayfair.apply_coupon

Apply promotional code.

wayfair.track_order

Check order delivery status.

Authentication

First use triggers OAuth authorization:

  1. User redirected to Wayfair login
  2. Tokens stored encrypted per-user
  3. Order history synced automatically

No API key required — connector manages OAuth flow.

Usage Examples

Search furniture:

Find modern sofas under $1000 on Wayfair

Check delivery:

When can Wayfair deliver this dining table to 90210?

Compare products:

Compare the top-rated queen beds on Wayfair

Track order:

Where is my Wayfair order?

Error Handling

CodeMeaningAction
AUTH_EXPIREDSession expiredRe-authenticate
OUT_OF_STOCKItem unavailableCheck similar items
DELIVERY_UNAVAILABLECan't ship to addressTry different product
COUPON_INVALIDCode doesn't workCheck terms

Use Cases

  • Furniture shopping: sofas, beds, tables, chairs
  • Home renovation: lighting, rugs, decor
  • Room design: search by style and color
  • Delivery tracking: monitor large item shipments
  • Sales hunting: find discounts and clearance

Links

Files

1 total
Select a file
Select a file to preview.

Comments

Loading comments…