loading…
Search for a command to run...
loading…
Enables users to search for beauty products, manage shopping baskets, and complete purchases on Sephora via an AI assistant. It also provides functionality to c
Enables users to search for beauty products, manage shopping baskets, and complete purchases on Sephora via an AI assistant. It also provides functionality to check Beauty Insider reward points and tier status using browser automation.
MCP connector for Sephora beauty retail. Search products, manage your basket, complete purchases, and check Beauty Insider rewards — all from an AI assistant.
| Tool | Description |
|---|---|
sephora_search_products |
Search for beauty products by keyword, category, and sort order |
sephora_get_product |
Get full product details, variants (shades/sizes), and reviews |
sephora_add_to_basket |
Add a product to the shopping basket |
sephora_view_basket |
View basket contents, quantities, and totals |
sephora_checkout |
Complete purchase with shipping and payment details |
sephora_get_rewards |
View Beauty Insider points, tier, and available rewards |
# Install Playwright browser (one-time)
npx playwright install chromium
# Run the MCP server
npx @striderlabs/mcp-sephora
Add to your MCP client configuration:
{
"mcpServers": {
"sephora": {
"command": "npx",
"args": ["@striderlabs/mcp-sephora"]
}
}
}
sephora_search_products({ query: "vitamin C serum", category: "skincare", max_results: 5 })
sephora_get_product({ product_url: "https://www.sephora.com/product/...", include_reviews: true })
sephora_add_to_basket({ product_url: "https://www.sephora.com/product/...", quantity: 1 })
sephora_checkout({ email: "...", first_name: "...", ..., dry_run: true })
sephora_get_rewards({ email: "[email protected]", password: "yourpassword" })
@modelcontextprotocol/sdk over stdio transportStrider Labs <[email protected]>
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"sephora-mcp-server": {
"command": "npx",
"args": []
}
}
}