loading…
Search for a command to run...
loading…
The Vistoya MCP server gives AI agents direct access to a curated, multi-brand fashion catalog. Agents can search by structured filters, discover products throu
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, and retrieve full product details — all over a single Streamable HTTP connection.
Semantic search and recommendations across fashion stores, exposed as a Model Context Protocol server. Connect any MCP-compatible AI agent (Claude, Cursor, VS Code, ChatGPT, etc.) and let it discover products, find visually similar items, and explore stores in the Vistoya marketplace.
io.github.vistoya/markethttps://api.vistoya.com/mcpnpx @vistoya/mcp
Automatically detects and configures Claude Desktop, Claude Code, Cursor, Windsurf, and VS Code. Restart your AI client after running.
Vistoya indexes fashion products from many stores and embeds them with a vision-language model. The MCP server lets agents query that index in natural language and reason over the results.
| Tool | Description |
|---|---|
discover_products |
Semantic search across all indexed stores. Accepts a natural-language query plus optional filters (category, color, gender, price, etc.) and returns ranked products. |
find_similar |
Given a product ID, return visually and semantically similar products. |
get_product |
Fetch full details for a single product by ID. |
get_filters |
List available filter values (categories, colors, materials, brands, …) so the agent knows what's filterable. |
list_stores |
List all indexed stores with their metadata. |
Add to claude_desktop_config.json (or your Claude Code MCP config):
{
"mcpServers": {
"vistoya": {
"url": "https://api.vistoya.com/mcp"
}
}
}
Add to ~/.cursor/mcp.json:
{
"mcpServers": {
"vistoya": {
"url": "https://api.vistoya.com/mcp"
}
}
}
Add to your mcp.json:
{
"servers": {
"vistoya": {
"type": "http",
"url": "https://api.vistoya.com/mcp"
}
}
}
Use mcp-remote as a bridge:
{
"mcpServers": {
"vistoya": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://api.vistoya.com/mcp"]
}
}
}
Once connected, try:
This server is published on the official MCP Registry. You can find it at:
https://registry.modelcontextprotocol.io/v0.1/servers?search=io.github.vistoya/market
Public preview. The endpoint is publicly reachable and does not currently require authentication.
MIT — see LICENSE.
Issues and feature requests: open an issue on this repo.
Добавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"vistoya": {
"command": "npx",
"args": []
}
}
}