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.
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
If you prefer Docker, run the server with:
docker run -e FINDMINE_APP_ID=your_app_id findmine/mcp-server:latest
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
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 | - |
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
product:///
URI schemelook:///
URI schemeHere are examples of how to use the available tools:
To retrieve fashion advice on color theory for weddings:
{
"name": "get_style_guide",
"arguments": {
"category": "color_theory",
"occasion": "wedding"
}
}
To get outfit recommendations for a specific product:
{
"name": "get_complete_the_look",
"arguments": {
"product_id": "P12345",
"product_color_id": "C789"
}
}
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
}
}
If you want to test the server with sample data:
NODE_ENV=development npm run build && node build/index.js
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.
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.
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.
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"
]
}
}
}
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.
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.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.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