Back to Browse

Perfume Picks MCP Server

Developer ToolsModerate5.2MCP RegistryLocal
Free

Server data from the Official MCP Registry

Search the Perfume Picks fragrance database: 13,000+ scents with notes, dupes, and wear data.

About

Search the Perfume Picks fragrance database: 13,000+ scents with notes, dupes, and wear data.

Security Report

5.2
Moderate5.2Moderate Risk

This is a well-designed read-only MCP server with strong security practices. Authentication uses Supabase's public/service-role key model appropriately, all database operations are read-only by construction, and input handling is careful with normalization and validation. The main score deduction reflects minor code quality concerns: broad error handling, lack of sensitive-data scrubbing in error messages, and unvalidated brand filter in searchFragrances. Permissions are well-scoped to the server's purpose (fragrance database queries and fire-and-forget telemetry logging). Supply chain analysis found 3 known vulnerabilities in dependencies (0 critical, 3 high severity). Package verification found 1 issue.

6 files analyzed · 8 issues found

Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.

Permissions Required

This plugin requests these system permissions. Most are normal for its category.

HTTP Network Access

Connects to external APIs or services over the internet.

env_vars

Check that this permission is expected for this type of plugin.

File System Read

Reads files on your machine. Normal for tools that analyze or process local data.

What You'll Need

Set these up before or after installing:

Override the database URLOptional

Environment variable: SUPABASE_URL

Internal use only — unlocks live 30-day wardrobe-add trending. Never distribute this key.Optional

Environment variable: SUPABASE_SERVICE_ROLE_KEY

How to Install

Add this to your MCP configuration file:

{
  "mcpServers": {
    "io-github-bguillow-rgb-perfume-picks": {
      "env": {
        "SUPABASE_URL": "your-supabase-url-here",
        "SUPABASE_SERVICE_ROLE_KEY": "your-supabase-service-role-key-here"
      },
      "args": [
        "-y",
        "perfume-picks-mcp"
      ],
      "command": "npx"
    }
  }
}

Documentation

View on GitHub

From the project's GitHub README.

Perfume Picks MCP Server

Query the Perfume Picks fragrance database from Claude, or any MCP-compatible AI client. Read-only access to 13,000+ fragrances with full note pyramids, accords, curated dupes, and community wear data.

Perfume Picks is the Fragrance DNA and collection journal for iOS — get it on the App Store.

Tools

ToolWhat it does
search_fragrancesFull-text catalog search with brand, family, gender, and MSRP filters
get_fragranceFull record for one scent (by slug or name): note pyramid, accords, community scores
find_dupesCurated cheaper smell-alikes with match percentage — "what smells like X without the price tag"
find_similarMost-similar fragrances from a precomputed similarity ranking
get_recommendationsPicks from note/accord preferences + budget + occasion + gender
compare_fragrancesSide-by-side: notes, shared/distinct accords, scores, price delta
trending_fragrancesWhat Perfume Picks users are adding to their wardrobes right now
what_to_wear_tonightA scent for right now — date-night picks use community compliment data, office picks use office-safety scores

Every response includes source attribution, a citation-ready summary line, links, and data freshness dates. All scoring is deterministic — no AI calls happen inside the server. All tools are annotated read-only/idempotent.

Install (Claude Desktop)

Requires Node.js 18+.

Add to your claude_desktop_config.json (Claude Desktop → Settings → Developer → Edit Config):

{
  "mcpServers": {
    "perfume-picks": {
      "command": "npx",
      "args": ["-y", "perfume-picks-mcp"]
    }
  }
}

Restart Claude Desktop. No API key or configuration needed — the server ships with public read-only access.

Configuration (optional)

Environment variables override the defaults (explicit env vars only — this package never reads .env files):

VariablePurpose
SUPABASE_URLOverride the database URL
SUPABASE_SERVICE_ROLE_KEYInternal use only — unlocks live 30-day wardrobe-add trending. Never distribute this key.

Without the service key, trending_fragrances falls back to catalog popularity and labels the method in its response.

Remote endpoint (no install)

Streamable HTTP for web agents and MCP clients that take a URL:

https://jdkwlwyysgofljkobpmr.supabase.co/functions/v1/mcp

Also listed on Smithery and the official MCP registry as io.github.bguillow-rgb/perfume-picks.

Example agent requests

Questions an agent can answer with these tools:

  • "What smells like Baccarat Rouge 540 without the price tag?"find_dupes (curated dupes with match %, e.g. Lattafa Ana Abiyedh Rouge, 90%)
  • "Recommend a fragrance for a summer wedding."get_recommendations with occasion: "wedding"
  • "What fragrances have bergamot, vanilla, and amber?"get_recommendations with those notes as preferences
  • "What perfume is similar to Bleu de Chanel?"find_similar
  • "What should I wear on a date tonight?"what_to_wear_tonight (scored by community compliment data)
  • "Compare Sauvage and Bleu de Chanel."compare_fragrances

Example response shape (truncated):

{
  "dupes": [
    { "name": "Lattafa Ana Abiyedh Rouge", "match_pct": 90,
      "savings_usd": 200.0, "msrp_usd": 39.99 }
  ],
  "attribution": {
    "source": "Perfume Picks — Fragrance DNA & Collection Journal",
    "links": { "website": "https://perfumepicks.app/" }
  }
}

Development

npm install
npm run dev     # run from TypeScript via tsx
npm run build   # compile to dist/
npm start       # run compiled server

The server speaks MCP over stdio. Catalog access is read-only by construction: every query path issues SELECTs against tables that are publicly readable under row-level security, and it is rate-limited to 60 calls/minute.

Usage telemetry: each tool call logs the tool name, its arguments, client name/version, duration, and success/failure to a write-only log table (insert-only under RLS; contents are not publicly readable; purged after 90 days). No user identity, account data, or conversation content is collected. Logging is fire-and-forget and never affects responses.

Data & attribution

Fragrance data, note pyramids, dupe matches, and community scores are curated by Perfume Picks. Quote freely with attribution:

Source: Perfume Picks — Fragrance DNA & Collection Journal (perfumepicks.app)

Freshness dates on each fragrance reflect the last data update.

Reviews

No reviews yet

Be the first to review this server!