Skip to main content
ClaudeWave
bguillow-rgb avatar
bguillow-rgb

perfume-picks-mcp

Ver en GitHub

MCP server for the Perfume Picks fragrance database — read-only catalog, dupes, and wear data for AI assistants

MCP ServersRegistry oficial0 estrellas0 forksTypeScriptMITActualizado today
ClaudeWave Trust Score
95/100
Verified
Passed
  • Open-source license (MIT)
  • Actively maintained (<30d)
  • Clear description
  • Topics declared
  • Documented (README)
Last scanned: 8/22/2026
Install in Claude Code / Claude Desktop
Method: Manual
Claude Code CLI
git clone https://github.com/bguillow-rgb/perfume-picks-mcp
claude_desktop_config.json (Claude Desktop)
{
  "mcpServers": {
    "perfume-picks-mcp": {
      "command": "node",
      "args": ["/path/to/perfume-picks-mcp/dist/index.js"]
    }
  }
}
1. Run the command above in your terminal (Claude Code), or paste the JSON config into claude_desktop_config.json (Claude Desktop).
2. Replace any <placeholder> values with your API keys or paths.
3. Restart Claude. The MCP server and its tools appear automatically.
💡 Clone https://github.com/bguillow-rgb/perfume-picks-mcp and follow its README for install instructions.
Casos de uso

Resumen de MCP Servers

# Perfume Picks MCP Server

Query the [Perfume Picks](https://perfumepicks.app/) 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](https://apps.apple.com/us/app/perfume-picks/id6774184221).

## Tools

| Tool | What it does |
|---|---|
| `search_fragrances` | Full-text catalog search with brand, family, gender, and MSRP filters |
| `get_fragrance` | Full record for one scent (by slug or name): note pyramid, accords, community scores |
| `find_dupes` | Curated cheaper smell-alikes with match percentage — "what smells like X without the price tag" |
| `find_similar` | Most-similar fragrances from a precomputed similarity ranking |
| `get_recommendations` | Picks from note/accord preferences + budget + occasion + gender |
| `compare_fragrances` | Side-by-side: notes, shared/distinct accords, scores, price delta |
| `trending_fragrances` | What Perfume Picks users are adding to their wardrobes right now |
| `what_to_wear_tonight` | A 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):

```json
{
  "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):

| Variable | Purpose |
|---|---|
| `SUPABASE_URL` | Override the database URL |
| `SUPABASE_SERVICE_ROLE_KEY` | Internal 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](https://smithery.ai/servers/bguillow/perfume-picks) and the [official MCP registry](https://registry.modelcontextprotocol.io) 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):

```json
{
  "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

```bash
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.
agent-toolsai-agentsfragrancemcpmcp-servermodel-context-protocolperfumerecommendations

Lo que la gente pregunta sobre perfume-picks-mcp

¿Qué es bguillow-rgb/perfume-picks-mcp?

+

bguillow-rgb/perfume-picks-mcp es mcp servers para el ecosistema de Claude AI. MCP server for the Perfume Picks fragrance database — read-only catalog, dupes, and wear data for AI assistants Tiene 0 estrellas en GitHub y su última actualización registrada es del 2026-08-21.

¿Cómo se instala perfume-picks-mcp?

+

Puedes instalar perfume-picks-mcp clonando el repositorio (https://github.com/bguillow-rgb/perfume-picks-mcp) o siguiendo las instrucciones del README en GitHub. ClaudeWave también te ofrece bloques de instalación rápida en esta misma página.

¿Es seguro usar bguillow-rgb/perfume-picks-mcp?

+

Nuestro agente de seguridad ha analizado bguillow-rgb/perfume-picks-mcp y le ha asignado un Trust Score de 95/100 (tier: Verified). Revisa el desglose completo de comprobaciones superadas y flags en esta página.

¿Quién mantiene bguillow-rgb/perfume-picks-mcp?

+

bguillow-rgb/perfume-picks-mcp es mantenido por bguillow-rgb. La última actividad registrada en GitHub es del 2026-08-21, con 0 issues abiertos.

¿Hay alternativas a perfume-picks-mcp?

+

Sí. En ClaudeWave puedes explorar mcp servers similares en /categories/mcp, ordenados por popularidad o actividad reciente.

Despliega perfume-picks-mcp en tu cloud

Lleva este repo a producción en minutos. Cada plataforma genera su propio entorno con variables de entorno editables.

¿Mantienes este repo? Añade un badge a tu README

Pega el badge en tu README de GitHub para mostrar que está auditado por ClaudeWave. Cada badge enlaza de vuelta a esta página y muestra el Trust Score actual.

Featured on ClaudeWave: bguillow-rgb/perfume-picks-mcp
[![Featured on ClaudeWave](https://claudewave.com/api/badge/bguillow-rgb-perfume-picks-mcp)](https://claudewave.com/repo/bguillow-rgb-perfume-picks-mcp)
<a href="https://claudewave.com/repo/bguillow-rgb-perfume-picks-mcp"><img src="https://claudewave.com/api/badge/bguillow-rgb-perfume-picks-mcp" alt="Featured on ClaudeWave: bguillow-rgb/perfume-picks-mcp" width="320" height="64" /></a>

Más MCP Servers

Alternativas a perfume-picks-mcp