Skip to main content
Glama
Ownership verified

Server Details

MCP server for makeup.land — an Israeli professional cosmetics retailer. Catalog tools (list_products with cross-lingual semantic search and ΔE-ranked shade matching that returns shade_match: {hex, delta_e} per product, plus validate_gift_card) work anonymously. Customer-data tools (list_brands, get_customer, get_cart, list_orders, list_payment_links, get_customer_best_deals) need a bearer token issued via shop@makeup.land.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsB

Average 3.8/5 across 8 of 8 tools scored. Lowest: 2.8/5.

Server CoherenceA
Disambiguation5/5

Each tool targets a unique domain aspect: cart, customer, deals, brands, orders, payment links, products, and gift cards. No functional overlap.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern (get_* for single items, list_* for collections, validate_gift_card). All snake_case, no mixing.

Tool Count5/5

8 tools is well-scoped for a query-focused loyalty/retail server, covering the essential data endpoints without bloat.

Completeness4/5

Core query operations are present, but missing singular get_product and get_order by ID would improve completeness. No mutation tools, but that may be intentional.

Available Tools

8 tools
get_cartFetch a customer's cartInspect

Return the customer's most-recently-updated cart with per-line and total reward projection. Bearer + phone required.

ParametersJSON Schema
NameRequiredDescriptionDefault
phoneYesE.164 phone selecting the customer whose cart to return.
get_customerLookup customer by phoneInspect

Return tags, ℳ-credit balance, M Club tier for the customer with the given E.164 phone. Bearer required.

ParametersJSON Schema
NameRequiredDescriptionDefault
phoneYesE.164 phone number, e.g. +972501234567.
get_customer_best_dealsPersonalised best deals for a customerInspect

Top deal projections based on the customer's tags + M Club tier. Bearer + phone required.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMax deals to return.
phoneYesE.164 phone selecting the customer.
list_brandsList all brandsInspect

Return every brand with product counts and slugs. Bearer required.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

list_ordersList a customer's ordersInspect

Recent orders with 6-axis status (order / payment / fulfillment / delivery / return / review). Bearer + phone required.

ParametersJSON Schema
NameRequiredDescriptionDefault
pageNo1-indexed page number.
limitNoPage size.
phoneYesE.164 phone selecting the customer.
list_productsList / search productsInspect

Browse the catalog with tag, brand, near_hex (ΔE shade match), hue_family, and sort filters. Bearer becomes required when passing phone (rewards projection).

ParametersJSON Schema
NameRequiredDescriptionDefault
qNoNatural-language query. Cross-lingual semantic search — `lipstick`, `שפתון`, `lápiz labial` each return Hebrew-tagged lipsticks (the sets may differ across languages but are semantically equivalent). Prefer this over `tag` for any category lookup that isn't already in exact Hebrew.
tagNoFilter by an EXACT tag string. Tags are Hebrew (e.g. שפתון, ביוטי, עיניים, שפתיים). English category names rarely match — use `q` instead for natural-language queries.
pageNo1-indexed page number.
sortNoSort order. Default: relevance.
brandNoFilter by brand slug or name.
limitNoPage size, default 20.
phoneNoE.164 phone for per-customer rewards projection. REQUIRES bearer auth. Omit for anonymous catalog browse.
near_hexNoTarget hex color for ΔE-ranked shade matching. Examples: '#C2185B', 'E8D4B8'. Each returned product carries a `shade_match: {hex, delta_e}` field with the closest variant swatch and its perceptual distance.
hue_familyNoPost-filter on hue family. Must be paired with another filter.
validate_gift_cardValidate a gift card codeInspect

Check a gift card's remaining balance using its code. Public endpoint — no bearer required (gated on knowledge of the code).

ParametersJSON Schema
NameRequiredDescriptionDefault
codeYesGift card code (full string as printed on the card).

Discussions

No comments yet. Be the first to start the discussion!

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources