# market MCP server

Search and get fashion products recommendations across multiple e-ecom stores

## Links
- Registry page: https://www.getdrio.com/mcp/io-github-vistoya-market
- Repository: https://github.com/vistoya/vistoya-mcp

## Install
- Endpoint: https://api.vistoya.com/mcp
- Auth: Not captured

## Setup notes
- Remote endpoint: https://api.vistoya.com/mcp

## Tools
- discover_products - Find fashion products using natural language and/or structured filters. Provide a `query` for semantic ranking via multimodal text+image embeddings ("oversized wool coat", "black leather jacket", "minimalist gold jewelry", "linen shirt for a beach wedding under $200") — best for open-ended discovery. Keep queries concrete: noun-led with up to one or two modifiers works best ("summer linen shirt" beats "breathable linen shirt perfect for summer"). Provide only structured filters (category, brand, colors, gender, price, etc.) for pure browse — results are recency-ranked and paginate cleanly. Combine both for filtered semantic search. At least one of query or a filter must be provided.

Example calls (notice the sparse filter population — descriptive attributes stay in `query`, not in structured fields):
- "linen wedding guest dress under $200" → {query: "linen wedding guest dress", gender: "women", max_price: 200, materials: ["linen"]}
- "wool coat under $300" → {query: "wool coat", gender: "women", max_price: 300, materials: ["wool"]}
- "browse women's black dresses $100-$300" → {gender: "women", category: "clothing/dresses", colors: ["black"], min_price: 100, max_price: 300}
- "Acne Studios outerwear" → {query: "outerwear", brand: "Acne Studios", gender: "women"}

Returns compact product cards: AI-generated summary, price, images, tags, and compact availability by color/size; variant price differences are nested under the availability dimension that determines price. For merchant description, store info, SKU-level variants, exact variant prices, and all product images, call get_product with a product ID from these results. Multi-currency prices supported (e.g. "under 200 zł" or min_price=200 + currency="PLN"); returned prices render in the requested currency when provided. Endpoint: https://api.vistoya.com/mcp
- find_similar_products - Given a product ID, find similar products across the entire catalog. Useful for "more like this" recommendations or finding alternatives. Returns compact product cards, not full variant detail; call get_product for SKU-level variants, exact variant prices, merchant description, store info, and all images. Returns page and hasNextPage. Returns up to 20 results per page, paginated (max 3 pages). Endpoint: https://api.vistoya.com/mcp
- discover_brands - Find fashion brands using natural language, structured filters, or both. Best for queries like "Italian streetwear brands", "Scandinavian minimalist brands", "Japanese technical outerwear", "brands with avant-garde tailoring", or "brands like Rick Owens". Country adjectives ("Italian", "Scandinavian", "Nordic", "Japanese", "Iberian", "Benelux") are parsed server-side into shipping-origin filters; you don't need to translate them to ISO codes. `query` is optional — provide a query, structured filters, or both. Brand country/shipping signals are best-effort and separate from product availability. Endpoint: https://api.vistoya.com/mcp
- find_similar_brands - Given a brand name, find similar brands using brand-profile vectors generated during product indexing. Returns up to 20 brands. Endpoint: https://api.vistoya.com/mcp
- get_product - Get the detailed response for a specific product ID. Use this after discover_products or find_similar_products when you need merchant description, store info, all images, SKU-level availability variants, SKU, colorKey/size matrix, exact variant prices/compareAtPrice in the requested currency, and the direct link to purchase. Endpoint: https://api.vistoya.com/mcp
- get_filters - Returns available filter values in the catalog. By default returns categoryTree plus brands, colors, materials, genders, occasions, seasons, styles, silhouettes, currencies, and price range. Use "fields" to request only specific dimensions — faster and less data. "categoryTree" is a flat DFS-ordered list of { value, label } entries; hierarchy is encoded in the value slug (e.g. "clothing/jackets/bomber-jackets"), parents appear before descendants, and every value can be passed directly to discover_products.category. Use "brand_search" to search brands by prefix instead of listing all. Pass "gender" to scope categoryTree to that gender (women/men/girls/boys); omit to see the merged union. Endpoint: https://api.vistoya.com/mcp

## Resources
- ui://widget/product-list-v1.html - Vistoya product-list widget (MCP-Apps spec — Claude Desktop, Cursor, VS Code Copilot, Goose). MIME type: text/html;profile=mcp-app
- ui://widget/product-list-v1.skybridge.html - Vistoya product-list widget (ChatGPT) Vistoya product-list widget for ChatGPT Apps SDK (Skybridge MIME). MIME type: text/html+skybridge

## Prompts
Not captured

## Metadata
- Owner: io.github.vistoya
- Version: 1.0.0
- Runtime: Streamable Http
- Transports: HTTP
- License: Not captured
- Language: Not captured
- Stars: Not captured
- Updated: Apr 11, 2026
- Source: https://registry.modelcontextprotocol.io
