FindMine Shopping Stylist MCP server

Integrates with FindMine's product styling API to enable fashion recommendations, outfit creation, product browsing, and style guide access for e-commerce platforms.
Back to servers
Setup instructions
Provider
FindMine
Release date
Mar 09, 2025
Language
TypeScript
Package
Stats
3.8K downloads
1 star

The FindMine Shopping Stylist MCP server integrates FindMine's product styling and outfit recommendation capabilities with Claude and other MCP-compatible applications. This server allows you to access outfit recommendations, find similar products, and get fashion advice through a simple API interface.

Installation Options

Using npm

The simplest way to install and run the FindMine MCP server:

# Install and run directly (recommended)
npx findmine-mcp

# Or install globally
npm install -g findmine-mcp
findmine-mcp

Using Docker

If you prefer Docker, run the server with:

docker run -e FINDMINE_APP_ID=your_app_id findmine/mcp-server:latest

From Source

To build from source:

# Clone the repository
git clone https://github.com/findmine/findmine-mcp.git
cd findmine-mcp

# Install dependencies
npm install

# Build the server
npm run build

# For development with auto-rebuild
npm run watch

Configuration

The server can be configured using environment variables:

Variable Description Default
FINDMINE_API_URL FindMine API base URL https://api.findmine.com
FINDMINE_APP_ID Your FindMine application ID DEMO_APP_ID
FINDMINE_API_VERSION API version to use v3
FINDMINE_DEFAULT_REGION Default region code us
FINDMINE_DEFAULT_LANGUAGE Default language code en
FINDMINE_CACHE_ENABLED Enable response caching true
FINDMINE_CACHE_TTL_MS Cache time-to-live in ms 3600000 (1 hour)
NODE_ENV Set to "development" for sample data -

Using with Claude Desktop

The server automatically configures Claude Desktop during installation. To verify the configuration:

On macOS:

cat ~/Library/Application\ Support/Claude/claude_desktop_config.json

On Windows:

type %APPDATA%\Claude\claude_desktop_config.json

Available Features

Resources

  • Products: Access detailed product information using product:/// URI scheme
  • Looks: Browse complete outfit recommendations with look:/// URI scheme

Tools

  • get_style_guide: Access detailed fashion advice and styling guidelines
  • get_complete_the_look: Get outfit recommendations for a specific product
  • get_visually_similar: Find visually similar products

Prompts

  • outfit_completion: Get styling advice for complete outfits
  • styling_guide: Access comprehensive fashion styling guidelines
  • findmine_help: Learn how to use FindMine's tools and resources

Using the API

Here are examples of how to use the available tools:

Getting Style Guides

To retrieve fashion advice on color theory for weddings:

{
  "name": "get_style_guide",
  "arguments": {
    "category": "color_theory",
    "occasion": "wedding"
  }
}

Finding Complete-the-Look Recommendations

To get outfit recommendations for a specific product:

{
  "name": "get_complete_the_look",
  "arguments": {
    "product_id": "P12345",
    "product_color_id": "C789"
  }
}

Finding Similar Products

To discover products that are visually similar to a specific item:

{
  "name": "get_visually_similar",
  "arguments": {
    "product_id": "P12345",
    "product_color_id": "C789",
    "limit": 5
  }
}

Development Mode

If you want to test the server with sample data:

NODE_ENV=development npm run build && node build/index.js

Using the MCP Inspector

For testing your server during development:

npm run inspector

This opens a web interface at http://localhost:5173 where you can interact with your server.

How to install this MCP server

For Claude Code

To add this MCP server to Claude Code, run this command in your terminal:

claude mcp add-json "findmine-mcp" '{"command":"npx","args":["findmine-mcp"]}'

See the official Claude Code MCP documentation for more details.

For Cursor

There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json file so that it is available in all of your projects.

If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json file.

Adding an MCP server to Cursor globally

To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".

When you click that button the ~/.cursor/mcp.json file will be opened and you can add your server like this:

{
    "mcpServers": {
        "findmine-mcp": {
            "command": "npx",
            "args": [
                "findmine-mcp"
            ]
        }
    }
}

Adding an MCP server to a project

To add an MCP server to a project you can create a new .cursor/mcp.json file or add it to the existing one. This will look exactly the same as the global MCP server example above.

How to use the MCP server

Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.

The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.

You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.

For Claude Desktop

To add this MCP server to Claude Desktop:

1. Find your configuration file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json

2. Add this to your configuration file:

{
    "mcpServers": {
        "findmine-mcp": {
            "command": "npx",
            "args": [
                "findmine-mcp"
            ]
        }
    }
}

3. Restart Claude Desktop for the changes to take effect

Want to 10x your AI skills?

Get a free account and learn to code + market your apps using AI (with or without vibes!).

Nah, maybe later