# io.github.teamsincetoday/recipe-commerce-mcp (npm · recipe-commerce-mcp)

Extract shoppable ingredients from recipe content with affiliate signals.

- Trust score: 65/100 (medium)
- Change this week: +21
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `recipe-commerce-mcp`: 65/100 (this document), [markdown](https://verifymcp.io/servers/teamsincetoday-recipe-commerce-mcp/recipe-commerce-mcp.md), [page](https://verifymcp.io/servers/teamsincetoday-recipe-commerce-mcp/recipe-commerce-mcp)

## Channel facts

- Registry: `npm`
- Package: `recipe-commerce-mcp`
- Version: `0.1.3`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 87/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (132 of 136), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (132 of 136), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 120 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 59/100
  - AI-judged instruction clarity (good).
  - Context-footprint check failed: tool/resource definitions use about 637 tokens (~212/item across 3 items; 3 tools + 0 resources), over budget; trim descriptions and params.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 23/100
  - Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add teamsincetoday-recipe-commerce-mcp -- npx -y recipe-commerce-mcp
```

### Codex

```bash
codex mcp add teamsincetoday-recipe-commerce-mcp -- npx -y recipe-commerce-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "teamsincetoday-recipe-commerce-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "recipe-commerce-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add teamsincetoday-recipe-commerce-mcp --command npx --arg -y --arg recipe-commerce-mcp
```

### Hermes

```yaml
mcp_servers:
  teamsincetoday-recipe-commerce-mcp:
    command: "npx"
    args: ["-y", "recipe-commerce-mcp"]
```

### Other

```json
{
  "mcpServers": {
    "teamsincetoday-recipe-commerce-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "recipe-commerce-mcp"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-02 (score 65, +60)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [functional regression] Security disclosure: fail → unverified
- [functional improvement] License: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Stability: unverified → 0.20
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Schema quality: unverified → good
- [functional improvement] Tool coverage: unverified → 100
- [functional] Licence: MIT

### 2026-08-01 (score 5, −1)

- [functional regression] Dependency health: partial → unverified

### 2026-07-31 (score 6, −38)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-27 (score 44)

First indexed and scored.

## MCP tools (3)

### `extract_recipe_ingredients` (~223 tokens)

Extract structured recipe data from transcript text or YouTube URL: recipe name, ingredients with quantity and unit, equipment list, and cooking technique tags. YouTube URL transcription requires yt-dlp installed on the server — if not available the call fails; pass raw transcript text for reliable extraction in all environments. Returns ingredient list ready for match_ingredients_to_products and suggest_affiliate_products. Call this first — both downstream tools reuse its cache. Use for recipe monetization, shoppable recipe creation, and cooking content commerce. Example: recipe_id='chocolate-chip-cookies-v1', transcript='2 cups flour...' → returns {ingredients:[{name:'flour',quantity:'2',unit:'cups',category:'pantry'},...]}.

Input parameters:

- `api_key` (string): Optional API key for paid access beyond the free tier
- `recipe_id` (string): Optional recipe identifier for caching. Auto-derived from content if omitted.
- `transcript` (string, required): Raw transcript text OR a YouTube URL (e.g. https://youtube.com/watch?v=...)

### `match_ingredients_to_products` (~221 tokens)

Match recipe ingredients to purchasable products on Amazon and specialty retailers. Returns affiliate program details (Amazon Associates, ShareASale, Awin), estimated price range, estimated commission rate (2–10%), and substitution alternatives. Commission rates are benchmark estimates — not live affiliate platform data. Use this tool for ingredient-level product details and substitutions; use suggest_affiliate_products for a revenue-ranked shopping list instead. Accepts ingredient list directly or recipe_id from a prior extract_recipe_ingredients call. Use for recipe affiliate monetization and shoppable recipe generation. Example: recipe_id='chocolate-chip-cookies-v1' → returns [{name:'flour',product:'King Arthur All-Purpose Flour',program:'Amazon Associates',estimated_commission_pct:4}].

Input parameters:

- `api_key` (string): Optional API key for paid access beyond the free tier
- `ingredients` (array): Ingredient list from extract_recipe_ingredients. Provide this OR recipe_id.
- `recipe_id` (string): Recipe ID from a prior extraction — loads ingredients from cache.

### `suggest_affiliate_products` (~193 tokens)

Generate a revenue-ranked affiliate shopping list for a recipe, sorted by estimated commission potential. Equipment ranks highest (Amazon Associates ~10% commission). Returns items sorted by affiliate score with estimated price range and commission per item. Revenue estimates are algorithmic benchmarks — not live pricing data. Use this tool for ranked shopping lists and blog monetization strategy; use match_ingredients_to_products for ingredient-level product SKUs and substitutions. Accepts ingredient list or recipe_id from extract_recipe_ingredients. Example: recipe_name='Beef Bourguignon'.

Input parameters:

- `api_key` (string): Optional API key for paid access beyond the free tier
- `ingredients` (array): Ingredient list. Provide this OR recipe_id.
- `recipe_id` (string): Recipe ID from a prior extraction — loads from cache.
- `recipe_name` (string, required): Recipe name (e.g. 'Beef Bourguignon', 'Chocolate Chip Cookies')

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/teamsincetoday-recipe-commerce-mcp/recipe-commerce-mcp#diagnostics

## Score history

- 2026-08-03: 65
- 2026-08-02: 65
- 2026-08-01: 5
- 2026-07-31: 6
- 2026-07-30: 44
- 2026-07-28: 44
- 2026-07-27: 44

## Links

- npm package: https://www.npmjs.com/package/recipe-commerce-mcp
- Socket report: https://socket.dev/npm/package/recipe-commerce-mcp
- Repository: https://github.com/teamsincetoday/recipe-commerce-mcp
- Changelog RSS feed: https://verifymcp.io/servers/teamsincetoday-recipe-commerce-mcp/recipe-commerce-mcp/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/teamsincetoday-recipe-commerce-mcp/recipe-commerce-mcp/changelog.json
- HTML version of this page: https://verifymcp.io/servers/teamsincetoday-recipe-commerce-mcp/recipe-commerce-mcp
