Agent prompts

Perfume MCP recipes

Copy a prompt into Cursor or Claude, or open it in the authenticated playground to run live against the catalog.

  • Find Creed Aventus

    Free-text search for a well-known masculine classic.

    search_fragrances

    Open in Playground
    Search the fragrance catalog for Creed Aventus and summarize the top match.
    
    Use the scentrev-mcp tool `search_fragrances` with arguments:
    ```json
    {
      "query": "creed aventus",
      "limit": 5
    }
    ```

    Docs: search_fragrances

  • Full profile for Aventus

    Pull longevity, sillage, notes, and sentiment in one call.

    get_fragrance_profile

    Open in Playground
    Get the full fragrance profile for creed-aventus including notes and performance.
    
    Use the scentrev-mcp tool `get_fragrance_profile` with arguments:
    ```json
    {
      "fragrance_slug": "creed-aventus"
    }
    ```

    Docs: get_fragrance_profile

  • Summer aquatic picks

    Season-filtered browse with a vote floor for reliability.

    search_fragrances_filtered

    Open in Playground
    Find highly rated summer fragrances with aquatic accords that people actually wear.
    
    Use the scentrev-mcp tool `search_fragrances_filtered` with arguments:
    ```json
    {
      "accords": [
        "aquatic"
      ],
      "filter_season": "summer",
      "min_season_category": "good",
      "min_rating_votes": 50,
      "sort_by": "rating",
      "result_limit": 10
    }
    ```

    Docs: search_fragrances_filtered

  • Beast-mode winter masculine

    Strong sillage + longevity for cold weather.

    search_fragrances_filtered

    Open in Playground
    Find beast-mode winter masculine fragrances with strong sillage and long-lasting longevity.
    
    Use the scentrev-mcp tool `search_fragrances_filtered` with arguments:
    ```json
    {
      "filter_gender": "male",
      "filter_season": "winter",
      "min_season_category": "good",
      "min_sillage_category": "strong",
      "min_longevity_category": "long_lasting",
      "min_rating_votes": 50,
      "sort_by": "sillage",
      "result_limit": 10
    }
    ```

    Docs: search_fragrances_filtered

  • Mix Le Beau + Virgin Island Water

    Blend two reference pyramids for layering ideas.

    search_by_references

    Open in Playground
    Mix Jean Paul Gaultier Le Beau with Creed Virgin Island Water and suggest fragrances that overlap both note pyramids.
    
    Use the scentrev-mcp tool `search_by_references` with arguments:
    ```json
    {
      "reference_slugs": [
        "jean-paul-gaultier-le-beau",
        "creed-virgin-island-water"
      ],
      "note_mode": "weighted",
      "sort_by": "overlap",
      "result_limit": 10
    }
    ```

    Docs: search_by_references

  • Resolve informal name

    Turn “le beau” into a catalog slug.

    resolve_slug

    Open in Playground
    Resolve the informal fragrance name le beau to its catalog slug.
    
    Use the scentrev-mcp tool `resolve_slug` with arguments:
    ```json
    {
      "query": "le beau",
      "result_limit": 5
    }
    ```

    Docs: resolve_slug

  • Compare two icons

    Side-by-side wear and rating metrics.

    compare_fragrances

    Open in Playground
    Compare creed-aventus and dior-sauvage on longevity, sillage, and rating.
    
    Use the scentrev-mcp tool `compare_fragrances` with arguments:
    ```json
    {
      "fragrance_slugs": [
        "creed-aventus",
        "dior-sauvage"
      ]
    }
    ```

    Docs: compare_fragrances

  • Underrated beloved gems

    Positive appreciation without perfect-score inflation.

    search_fragrances_filtered

    Open in Playground
    Find underrated fragrances that people love but that are not maxed-out on rating.
    
    Use the scentrev-mcp tool `search_fragrances_filtered` with arguments:
    ```json
    {
      "max_rating_category": "good",
      "min_appreciation_category": "positive",
      "min_rating_votes": 30,
      "sort_by": "discovery",
      "result_limit": 10
    }
    ```

    Docs: search_fragrances_filtered

  • Note pyramid

    Top / heart / base for a single scent.

    get_note_pyramid

    Open in Playground
    Show the note pyramid for creed-aventus.
    
    Use the scentrev-mcp tool `get_note_pyramid` with arguments:
    ```json
    {
      "fragrance_slug": "creed-aventus"
    }
    ```

    Docs: get_note_pyramid

  • What it reminds people of

    Community similarity votes.

    get_reminds_of

    Open in Playground
    What fragrances does creed-aventus remind people of?
    
    Use the scentrev-mcp tool `get_reminds_of` with arguments:
    ```json
    {
      "fragrance_slug": "creed-aventus",
      "limit": 5
    }
    ```

    Docs: get_reminds_of