返回 Skill 列表
extension
分类: 其它无需 API Key

Strider Lowes

通过Strider Labs MCP连接器访问Lowe's家居建材商城,支持商品搜索、库存查询、价格比较及建材、工具、家电等产品的下单购买。

person作者: markswendsen-codehubclawhub

Strider Lowe's Connector

MCP connector for Lowe's home improvement shopping. Part of the Strider Labs action execution layer for AI agents.

Installation

npm install @striderlabs/mcp-lowes

MCP Configuration

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

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

Available Tools

lowes.search_products

Search Lowe's catalog for products.

Input Schema:

{
  "query": "string",
  "category": "string (optional)",
  "brand": "string (optional)",
  "price_min": "number (optional)",
  "price_max": "number (optional)"
}

Output:

{
  "products": [{
    "item_number": "123456",
    "name": "DeWalt 20V MAX Drill",
    "price": 149.00,
    "rating": 4.7,
    "reviews_count": 2341,
    "in_stock": true,
    "image_url": "https://..."
  }]
}

lowes.check_store_inventory

Check product availability at local stores.

Input Schema:

{
  "item_number": "string",
  "zip_code": "string",
  "radius_miles": "number (optional)"
}

lowes.get_product_details

Get detailed product information.

Input Schema:

{
  "item_number": "string"
}

lowes.add_to_cart

Add item to shopping cart.

Input Schema:

{
  "item_number": "string",
  "quantity": "number"
}

lowes.checkout

Complete the purchase.

Input Schema:

{
  "delivery_type": "pickup | delivery",
  "store_id": "string (for pickup)",
  "address": "object (for delivery)"
}

Authentication

First use triggers OAuth authorization:

  1. User redirected to Lowe's login
  2. Tokens stored encrypted per-user
  3. Automatic refresh handles expiration

No API key required — connector manages OAuth flow.

Usage Examples

Search for tools:

Find cordless drills under $150 at Lowe's

Check availability:

Is the DeWalt drill in stock at my local Lowe's?

Compare products:

Compare Lowe's power washers by rating and price

Order materials:

Order 10 sheets of 4x8 plywood for delivery

Error Handling

| Code | Meaning | Action | |------|---------|--------| | AUTH_EXPIRED | Session expired | Re-authenticate | | OUT_OF_STOCK | Item unavailable | Check other stores | | ITEM_NOT_FOUND | Invalid item number | Search again | | DELIVERY_UNAVAILABLE | Can't deliver to address | Try pickup |

Use Cases

  • Project supplies: order lumber, drywall, and materials
  • Tool shopping: compare and buy power tools
  • Appliance purchase: shop washers, dryers, refrigerators
  • Inventory check: verify stock before driving to store
  • Pro purchasing: bulk orders for contractors

Links

  • npm: https://npmjs.com/package/@striderlabs/mcp-lowes
  • Strider Labs: https://striderlabs.ai