FindMine Shopping Stylist MCP Server

Integrates FindMine's product styling AI with Large Language Models via the Model Context Protocol.

Local serverstdioTypeScript 1

What is the FindMine Shopping Stylist MCP server?

If you already use FindMine Shopping Stylist, the findmine shopping stylist mcp server is the piece that lets your assistant work with it directly. Integrates FindMine's product styling AI with Large Language Models via the Model Context Protocol.

What the server does

A Model Context Protocol (MCP) server that integrates FindMine's powerful product styling and outfitting recommendations with Claude and other MCP-compatible applications.

This MCP server connects to FindMine's styling API and exposes its functionality to Large Language Models through the Model Context Protocol. It allows users to:

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • get_style_guide — Access detailed fashion advice and styling guidelines
  • get_complete_the_look — Get outfit recommendations for a product
  • get_visually_similar — Find visually similar products
  • Resources — The Resources tool exposed by this server
  • Tools — The Tools tool exposed by this server
  • Prompts — The Prompts tool exposed by this server
  • Testing — This project uses Vitest for testing. Tests are located in tests/ directories alongside source files

Installation

findmine-mcp on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.

Credentials and setup notes

Configuration is passed through the environment: FINDMINE_APP_ID, FINDMINE_API_URL, DEMO_APP_ID, FINDMINE_DEFAULT_REGION. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Where it fits

Plenty of developer tooling servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. FindMine Shopping Stylist's toolset — get_style_guide, get_complete_the_look, get_visually_similar and 4 more — is a fair guide to whether it matches your workflow. It is maintained by findmine; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Worth knowing first

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
get_style_guideAccess detailed fashion advice and styling guidelines
get_complete_the_lookGet outfit recommendations for a product
get_visually_similarFind visually similar products
ResourcesThe Resources tool exposed by this server.
ToolsThe Tools tool exposed by this server.
PromptsThe Prompts tool exposed by this server.
TestingThis project uses Vitest for testing. Tests are located in __tests__/ directories alongside source files.

How to install the FindMine Shopping Stylist MCP server

{
  "mcpServers": {
    "findmine-shopping-stylist": {
      "command": "npx",
      "args": ["-y", "findmine-mcp"],
      "env": {
        "FINDMINE_APP_ID": "your-value",
        "FINDMINE_API_URL": "your-value",
        "DEMO_APP_ID": "your-value",
        "FINDMINE_DEFAULT_REGION": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
FINDMINE_APP_IDConfiguration value read at startup.Optional
FINDMINE_API_URLEndpoint or connection string the server talks to.Yes
DEMO_APP_IDConfiguration value read at startup.Optional
FINDMINE_DEFAULT_REGIONConfiguration value read at startup.Optional

Example prompts to try

  • Use FindMine Shopping Stylist to get style guide.
  • Use FindMine Shopping Stylist to get complete the look.
  • Use FindMine Shopping Stylist to get visually similar.

Frequently asked questions

Key features include outfit recommendations (get_complete_the_look), visual similarity search (get_visually_similar), style guide access (get_style_guide), and browsing product/outfit information.