io.github.teamsincetoday/recipe-commerce-mcp
NPM · RECIPE-COMMERCE-MCP · SCANNED AUG 3
Extract shoppable ingredients from recipe content with affiliate signals.
Available components
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. How we score →
Supply Chain Security87
- No malware found by supply-chain analysis.Pass
- Only part of the dependency tree could be resolved (132 of 136), so this covers what we could see, not the whole tree.Partial
- No install/post-install scripts declared.Pass
- Only part of the dependency tree could be resolved (132 of 136), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
- Source repository is publicly reachable at the declared URL. View diagnostics → Pass
- Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
- Clear OSI-approved license (MIT).Pass
- Actively maintained (last published 120 days ago).Pass
- Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
Schema Quality & AI Usability59
- AI-judged instruction clarity (good).Pass
- 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. See how to fix → Fail
- Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management23
- Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage100
- 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
- 100% of tool parameters carry a description.Pass
Capabilities100
- Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.
npm · recipe-commerce-mcp
claude mcp add teamsincetoday-recipe-commerce-mcp -- npx -y recipe-commerce-mcp
codex mcp add teamsincetoday-recipe-commerce-mcp -- npx -y recipe-commerce-mcp
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"teamsincetoday-recipe-commerce-mcp": {
"type": "local",
"command": [
"npx",
"-y",
"recipe-commerce-mcp"
],
"enabled": true
}
}
} openclaw mcp add teamsincetoday-recipe-commerce-mcp --command npx --arg -y --arg recipe-commerce-mcp
mcp_servers:
teamsincetoday-recipe-commerce-mcp:
command: "npx"
args: ["-y", "recipe-commerce-mcp"] {
"mcpServers": {
"teamsincetoday-recipe-commerce-mcp": {
"command": "npx",
"args": [
"-y",
"recipe-commerce-mcp"
]
}
}
} Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.
- 2 Aug 26 +60
- Provenance: unverified → fail ▼ security
- Install scripts: unverified → pass ▲ security
- Known CVEs: unverified → partial ▲ security
- Malware scan: unverified → pass ▲ security
- Security disclosure: fail → unverified ▼ functional
- License: unverified → pass ▲ functional
- Dependency health: unverified → partial ▲ functional
- Stability: unverified → 0.20 ▲ functional
- Maintenance: unverified → pass ▲ functional
- MCP protocol: unverified → pass ▲ functional
- Schema quality: unverified → good ▲ functional
- Tool coverage: unverified → 100 ▲ functional
- Licence: MIT functional
- 1 Aug 26 −1
- Dependency health: partial → unverified ▼ functional
- 31 Jul 26 −38
- We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
- 27 Jul 26 44
First indexed and scored.
Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.
Captured 3 Aug 2026 · Analysed npm/[email protected]
Provenance none
Ecosystem: npm · Outcome: none
Dependencies 132 packages
132 packages in the resolved dependency tree · 132 deprecated · 49 stale.
The dependency tree was only partially resolved, so these counts may be incomplete.
The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.
extract_recipe_ingredients ~223
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'},...]}.
| Name | Type | Req | Description |
|---|---|---|---|
| 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 | yes | Raw transcript text OR a YouTube URL (e.g. https://youtube.com/watch?v=...) |
No output schema declared.
No examples provided.
match_ingredients_to_products ~221
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}].
| Name | Type | Req | Description |
|---|---|---|---|
| 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. |
No output schema declared.
No examples provided.
suggest_affiliate_products ~193
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'.
| Name | Type | Req | Description |
|---|---|---|---|
| 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 | yes | Recipe name (e.g. 'Beef Bourguignon', 'Chocolate Chip Cookies') |
No output schema declared.
No examples provided.