Sephora MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Sephora MCP ServerFind top-rated vitamin C serums for oily skin"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
@striderlabs/mcp-sephora
MCP connector for Sephora beauty retail. Search products, manage your basket, complete purchases, and check Beauty Insider rewards — all from an AI assistant.
Tools
Tool | Description |
| Search for beauty products by keyword, category, and sort order |
| Get full product details, variants (shades/sizes), and reviews |
| Add a product to the shopping basket |
| View basket contents, quantities, and totals |
| Complete purchase with shipping and payment details |
| View Beauty Insider points, tier, and available rewards |
Related MCP server: Instacart MCP Server
Setup
# Install Playwright browser (one-time)
npx playwright install chromium
# Run the MCP server
npx @striderlabs/mcp-sephoraMCP Configuration
Add to your MCP client configuration:
{
"mcpServers": {
"sephora": {
"command": "npx",
"args": ["@striderlabs/mcp-sephora"]
}
}
}Usage Examples
Search for products
sephora_search_products({ query: "vitamin C serum", category: "skincare", max_results: 5 })Get product details
sephora_get_product({ product_url: "https://www.sephora.com/product/...", include_reviews: true })Add to basket
sephora_add_to_basket({ product_url: "https://www.sephora.com/product/...", quantity: 1 })Checkout (dry run)
sephora_checkout({ email: "...", first_name: "...", ..., dry_run: true })View rewards
sephora_get_rewards({ email: "you@email.com", password: "yourpassword" })Technical Details
TypeScript with strict mode
Playwright headless Chromium for browser automation
Session management — single shared browser context with 30-minute timeout
MCP SDK
@modelcontextprotocol/sdkover stdio transport
Author
Strider Labs <hello@striderlabs.ai>
Available Tools
6 toolssephora_add_to_basketA
Add a product to the Sephora shopping basket. You can optionally specify a SKU ID to select a specific shade or size variant. Use sephora_get_product first to find available variant SKU IDs.
| Name | Required | Description | Default |
|---|---|---|---|
| product_url | Yes | Full Sephora product URL | |
| quantity | No | Quantity to add (1-10, default: 1) | |
| sku_id | No | Specific SKU ID for a variant (shade/size). If omitted, the default variant is used. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries full burden. It mentions optional SKU ID selection for variants, which adds useful context about behavior, but lacks details on permissions, error handling, or what happens if the product is out of stock. For a mutation tool with zero annotation coverage, this leaves gaps in behavioral understanding.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, zero waste. The first sentence states the purpose, and the second provides essential usage guidance, making it front-loaded and efficiently structured without unnecessary details.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no annotations and no output schema, the description adequately covers the tool's purpose and usage in context with siblings. However, as a mutation tool, it could benefit from more behavioral details like confirmation of success or error scenarios, leaving minor gaps in completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all parameters thoroughly. The description adds minimal value by mentioning the SKU ID for variants, but doesn't provide additional syntax or format details beyond what the schema specifies. Baseline 3 is appropriate when schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Add a product') and resource ('to the Sephora shopping basket'), specifying it's for adding items to a shopping cart. It distinguishes from siblings like sephora_get_product (for finding products) and sephora_view_basket (for viewing the basket).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly states when to use this tool ('Add a product to the Sephora shopping basket') and provides a clear alternative ('Use sephora_get_product first to find available variant SKU IDs'), guiding the agent on proper workflow and tool sequencing.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
sephora_checkoutA
Complete a Sephora purchase. Fills shipping address, applies optional promo codes, enters payment details, and places the order. Set dry_run=true to test the flow without actually placing an order.
| Name | Required | Description | Default |
|---|---|---|---|
| Yes | Email address for the order | ||
| first_name | Yes | First name | |
| last_name | Yes | Last name | |
| address_line1 | Yes | Street address line 1 | |
| address_line2 | No | Street address line 2 (optional) | |
| city | Yes | City | |
| state | Yes | 2-letter US state code, e.g. 'CA' | |
| zip | Yes | ZIP code (5 or 9 digit) | |
| phone | Yes | Phone number | |
| card_number | Yes | Credit/debit card number (digits only) | |
| card_expiry | Yes | Card expiry date in MM/YY or MM/YYYY format | |
| card_cvv | Yes | Card CVV/CVC code | |
| card_name | Yes | Name as it appears on card | |
| promo_code | No | Optional promotional/discount code | |
| dry_run | No | If true, fill in checkout form but do NOT submit the order (useful for testing) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It clearly indicates this is a write/mutation operation ('places the order') and mentions the testing capability via 'dry_run'. However, it doesn't disclose important behavioral aspects like authentication requirements, rate limits, error conditions, or what happens when promo codes are invalid. The description adds some value but leaves significant gaps for a mutation tool.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is perfectly concise with two sentences that each earn their place. The first sentence states the purpose and key actions, while the second provides crucial behavioral context about testing. There's zero wasted text, and the most important information (the tool's purpose) is front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a complex mutation tool with 15 parameters and no annotations or output schema, the description is adequate but incomplete. It covers the basic purpose and testing capability well, but doesn't address important contextual aspects like authentication requirements, error handling, or what the tool returns. Given the complexity and lack of structured metadata, a more comprehensive description would be beneficial.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all 15 parameters thoroughly. The description mentions 'promo codes' and 'dry_run' specifically, but doesn't add meaningful semantic context beyond what's in the schema descriptions. The baseline of 3 is appropriate when the schema does the heavy lifting for parameter documentation.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('Complete a Sephora purchase') and enumerates the key steps involved (fills shipping address, applies promo codes, enters payment details, places order). It distinguishes itself from sibling tools like 'sephora_add_to_basket' or 'sephora_view_basket' by focusing on the final checkout process rather than earlier shopping stages.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context about when to use this tool (to complete a purchase) and includes explicit guidance about the 'dry_run' parameter for testing. However, it doesn't explicitly mention when NOT to use it or name specific alternatives among the sibling tools, though the distinction is implied by the tool's focus on checkout.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
sephora_get_productA
Get detailed information about a specific Sephora product including full description, ingredients, how-to-use instructions, available variants (shades/sizes), and customer reviews.
| Name | Required | Description | Default |
|---|---|---|---|
| product_url | Yes | Full Sephora product URL, e.g. https://www.sephora.com/product/... | |
| include_reviews | No | Whether to include customer reviews (default: true) | |
| max_reviews | No | Maximum number of reviews to return (1-10) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden but only covers what data is returned, not behavioral aspects like rate limits, authentication needs, error conditions, or pagination for reviews. It mentions reviews can be included/limited but doesn't describe review format or sorting.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence efficiently lists all key information elements without waste. Front-loaded with core purpose, followed by specific data components. Every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a read-only tool with 3 parameters (100% schema coverage) but no annotations or output schema, the description adequately covers what data is returned but lacks behavioral context (rate limits, errors) and output format details. Minimum viable but with clear gaps in transparency.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so parameters are fully documented in the schema. The description adds no additional parameter semantics beyond implying product_url identifies 'a specific Sephora product' and that reviews are part of the output. Baseline 3 is appropriate when schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Get' and resource 'detailed information about a specific Sephora product', listing specific data elements (description, ingredients, instructions, variants, reviews). It distinguishes from siblings like sephora_search_products (search vs. specific product) and sephora_add_to_basket (retrieval vs. action).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage for retrieving detailed product data, but doesn't explicitly state when to use this vs. alternatives like sephora_search_products (for browsing) or sephora_get_rewards (for loyalty info). No explicit exclusions or prerequisites are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
sephora_get_rewardsA
Retrieve Beauty Insider rewards information including points balance, tier status (Insider/VIB/Rouge), available rewards, recent activity, and tier benefits. Requires Sephora account credentials if not already logged in.
| Name | Required | Description | Default |
|---|---|---|---|
| No | Sephora account email (required if not logged in) | ||
| password | No | Sephora account password (required if not logged in) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It does well by mentioning the authentication requirement, but it doesn't describe what happens if credentials are invalid, whether there are rate limits, what format the rewards information is returned in, or any error conditions. For a tool with zero annotation coverage, this leaves significant behavioral gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is perfectly concise with just two sentences that pack substantial information. The first sentence comprehensively lists all retrievable data, and the second sentence clearly states the authentication requirement. Every word earns its place with zero wasted text.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (retrieving multiple types of rewards data), lack of annotations, and no output schema, the description does an adequate job but has clear gaps. It covers the purpose and authentication well, but doesn't describe the return format, error handling, or behavioral constraints that would be needed for the agent to use it effectively without trial and error.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents both parameters (email and password) with clear descriptions about when they're required. The description adds marginal value by reinforcing the authentication context ('Requires Sephora account credentials if not already logged in'), but doesn't provide additional syntax, format, or usage details beyond what the schema already states.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the specific action ('Retrieve') and resource ('Beauty Insider rewards information'), with detailed enumeration of what information is included (points balance, tier status, available rewards, recent activity, tier benefits). It distinguishes itself from sibling tools like sephora_add_to_basket or sephora_search_products by focusing exclusively on rewards data rather than shopping functionality.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context about when credentials are needed ('Requires Sephora account credentials if not already logged in'), which helps the agent understand authentication prerequisites. However, it doesn't explicitly state when to use this tool versus alternatives or provide exclusion criteria, leaving some ambiguity about its specific use cases relative to other tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
sephora_search_productsA
Search Sephora for beauty products. Returns product names, brands, prices, ratings, and URLs. Use this to discover products before viewing details or adding to basket.
| Name | Required | Description | Default |
|---|---|---|---|
| query | Yes | Search query, e.g. 'moisturizer', 'red lipstick', 'vitamin C serum' | |
| category | No | Optional category filter | |
| max_results | No | Maximum number of results to return (1-20) | |
| sort_by | No | Sort order for results |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden. It discloses the return data (product names, brands, prices, ratings, URLs) and the discovery purpose, but lacks details on rate limits, authentication needs, pagination, or error handling. For a search tool with no annotations, this is adequate but leaves behavioral gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences with zero waste: the first states purpose and returns, the second provides usage guidance. It's front-loaded with key information and appropriately sized for the tool's complexity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no annotations, 100% schema coverage, and no output schema, the description is mostly complete for a search tool. It covers purpose, returns, and usage context, but lacks output format details (e.g., structure of returned data) and behavioral traits like limits or errors, which would enhance completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema fully documents all parameters. The description adds no specific parameter semantics beyond implying a search functionality. Baseline 3 is appropriate as the schema handles parameter details, though the description could have added context like example queries or category usage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'search' and resource 'Sephora beauty products', specifying it returns product names, brands, prices, ratings, and URLs. It distinguishes from siblings like sephora_get_product (detailed view) and sephora_add_to_basket (basket operations) by emphasizing discovery before detailed actions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context: 'Use this to discover products before viewing details or adding to basket', which implicitly guides when to use this tool versus sephora_get_product or sephora_add_to_basket. However, it doesn't explicitly state when not to use it or mention alternatives like sephora_get_rewards for rewards-related searches.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
sephora_view_basketB
View the current contents of the Sephora shopping basket including all items, quantities, prices, subtotal, and estimated totals.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries full burden for behavioral disclosure. It states this is a 'view' operation which implies read-only behavior, but doesn't explicitly confirm this or mention other behavioral traits like authentication requirements, rate limits, error conditions, or whether it requires an active session. The description provides basic functional information but lacks important behavioral context.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, well-structured sentence that efficiently conveys the tool's purpose and scope. It's front-loaded with the main action ('View the current contents') and then specifies what information is included. Every word earns its place with no redundancy or unnecessary elaboration.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple read-only tool with no parameters and no output schema, the description provides adequate functional information about what the tool returns. However, it lacks important context about authentication requirements, session dependencies, or error handling that would be valuable for an agent. The absence of annotations means the description should compensate more for behavioral transparency.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has 0 parameters with 100% schema description coverage, so the baseline is 4. The description appropriately doesn't discuss parameters since none exist, and the schema already fully documents the empty parameter set. No additional parameter semantics are needed or provided.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'View the current contents of the Sephora shopping basket' with specific details about what information is included (items, quantities, prices, subtotal, estimated totals). It uses a specific verb ('view') and resource ('Sephora shopping basket'), but doesn't explicitly differentiate from sibling tools like 'sephora_checkout' which might also show basket contents.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides no guidance on when to use this tool versus alternatives. It doesn't mention when this tool should be used instead of other basket-related operations or what prerequisites might be needed (like having items in the basket). No explicit when/when-not statements or alternative tool references are provided.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
6 tool updates
v1.0.0- First observed
sephora_add_to_basket - First observed
sephora_checkout - First observed
sephora_get_product - First observed
sephora_get_rewards - First observed
sephora_search_products - First observed
sephora_view_basket
TDQS
Each tool has a clearly distinct purpose with no overlap: search_products finds items, get_product provides details, add_to_basket adds items, view_basket shows contents, checkout completes purchase, and get_rewards handles loyalty program. The descriptions explicitly guide usage flow, eliminating any ambiguity.
All tools follow a consistent 'sephora_verb_noun' pattern with snake_case throughout. The verbs (add_to, checkout, get, search, view) are descriptive and uniformly applied, making the set predictable and easy to navigate.
Six tools are well-scoped for an e-commerce server, covering the core shopping workflow from discovery to purchase and account management. Each tool earns its place without redundancy, and the count is manageable for agents to understand and use effectively.
The toolset provides complete coverage for Sephora's shopping domain: product discovery (search_products), detail retrieval (get_product), basket management (add_to_basket, view_basket), checkout (checkout), and account features (get_rewards). No obvious gaps exist, supporting end-to-end agent workflows.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
AI-powered product search, affiliate links, and price negotiation for e-commerce platforms
AI-powered commerce API for luxury skincare shopping. Enables AI agents to search products, browse collections, manage shopping carts, and generate checkout URLs for the Regenique Elegance Shopify store.
Provides cloud browser automation capabilities using Stagehand and Browserbase, enabling LLMs to i…
Product search for AI agents: Amazon + Shopify, cart-to-checkout buy path. Pay-per-call, no API key.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to search products, manage shopping carts, place orders, and retrieve order history from Amazon and Target accounts.2MIT
- AlicenseAqualityCmaintenanceEnables AI agents to search for products, manage shopping carts, and place grocery orders on Instacart using browser automation. It includes comprehensive tools for store discovery, product searching, and secure checkout with explicit user confirmation.11739MIT
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to interact with your personal Amazon cart through browser automation, allowing search, add to cart, and view cart functionalities.2119MIT
- AlicenseNot gradedqualityDmaintenanceEnables AI agents to search products, manage cart, place orders, and track shipments on Amazon via browser automation.271MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/markswendsen-code/mcp-sephora'
If you have feedback or need assistance with the MCP directory API, please join our Discord server