# vistoya

The Vistoya MCP server gives AI agents direct access to a curated, multi-brand fashion catalog. Agents can search by structured filters, discover products through natural language, find similar items…

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add seb-8pd6/vistoya

# Browse available tools
npx -y @smithery/cli@latest tool list seb-8pd6/vistoya

# Get full schema for a tool
npx -y @smithery/cli@latest tool get seb-8pd6/vistoya discover_products

# Call a tool
npx -y @smithery/cli@latest tool call seb-8pd6/vistoya discover_products '{}'
```

## Direct MCP Connection

Endpoint: `https://vistoya.run.tools`

**Required config:**
- `source` (query) — smithery

## Tools (5)

- `discover_products` — Find fashion products using natural language. Uses AI-powered semantic search with vector embeddings. Best for descript…
- `find_similar` — Given a product ID, find similar products across the entire catalog. Useful for "more like this" recommendations or fin…
- `get_product` — Get full details of a specific product by ID, including all variants, images, AI classification, and the direct link to…
- `list_stores` — List all connected ecommerce stores in the catalog with their product counts and providers.
- `get_filters` — Returns all available filter values in the catalog: categories, subcategories, brands, colors, materials, genders, occa…

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get seb-8pd6/vistoya <tool-name>
```
