MCP server intelligence profile

Recipe Commerce Intelligence MCP Server

Extracts branded ingredients and kitchen tools from recipes, matches them to affiliate products, and generates shoppable ingredient lists to turn recipes into affiliate revenue

Hybridteamsincetoday
Awaiting current scanNpm · 0.1.3

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

1Distribution channel
3Independently observed tools
0Linked remote endpoints
AvailableVersion intelligence

Detailed security scan evidence is not public for this MCP yet. Public identity, registry metadata, and independently observed protocol inventory remain available.

Install and connect

Installation and connection instructions are shown only when supported by retained package, repository, or endpoint evidence.

Install recipe-commerce-mcp from npm

Version 0.1.3 declares 1 executable entrypoint.

npm install --save-exact recipe-commerce-mcp@0.1.3
npx -y -p recipe-commerce-mcp@0.1.3 recipe-commerce-mcp
MCP client configuration example
{
  "mcpServers": {
    "recipe-commerce-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "-p",
        "recipe-commerce-mcp@0.1.3",
        "recipe-commerce-mcp"
      ]
    }
  }
}

Identity

Canonical slugrecipe-commerce-intelligence-mcp-e0c7b823DeploymentHybrid
Canonical packagenpm:recipe-commerce-mcpRepositoryteamsincetoday/recipe-commerce-mcp
First publishedLatest release
Last security verificationClassification confidence82%
PublicationDraftOfficial distributionNot verified

Distributions

ChannelIdentifierCurrent versionVersionsSource
npmrecipe-commerce-mcp0.1.31Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
npmrecipe-commerce-mcp0.1.3CurrentSep 5, 20263 toolsSucceeded · 0 resources · 0 promptsEvidence restricted
Enterprise protection

Continuously monitor this MCP for security risk

Independently scan the exact version your agents use, receive alerts when its risk changes, and investigate every finding with retained version evidence.

  • Independent exact-version security scans
  • Continuous release and vulnerability monitoring
  • Risk-change alerts with capability context
  • Historical evidence and API exports
Custom pricingContact salesTailored to your organization, integrations, data needs, and support requirements.

Current version evidence

No public current-version evidence is available yet.

Current protocol inventory

2025-06-18Negotiated protocol
recipe-commerce-intelligenceServer-reported name
1Capability groups
Aug 22, 2026Observed

Tools 3

ToolCategoryAnnotationsRisk
extract_recipe_ingredientsExtract 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 schema
{
  "type": "object",
  "properties": {
    "transcript": {
      "type": "string",
      "minLength": 1,
      "maxLength": 100000,
      "description": "Raw transcript text OR a YouTube URL (e.g. https://youtube.com/watch?v=...)"
    },
    "recipe_id": {
      "type": "string",
      "maxLength": 200,
      "description": "Optional recipe identifier for caching. Auto-derived from content if omitted."
    },
    "api_key": {
      "type": "string",
      "maxLength": 200,
      "description": "Optional API key for paid access beyond the free tier"
    }
  },
  "required": [
    "transcript"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
match_ingredients_to_productsMatch 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 schema
{
  "type": "object",
  "properties": {
    "ingredients": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "minLength": 1,
            "maxLength": 200
          },
          "quantity": {
            "type": "string",
            "maxLength": 50
          },
          "unit": {
            "type": "string"
          },
          "category": {
            "type": "string",
            "enum": [
              "pantry",
              "fresh",
              "dairy",
              "meat",
              "seafood",
              "equipment",
              "specialty",
              "other"
            ],
            "default": "other"
          },
          "optional": {
            "type": "boolean",
            "default": false
          }
        },
        "required": [
          "name"
        ],
        "additionalProperties": false
      },
      "description": "Ingredient list from extract_recipe_ingredients. Provide this OR recipe_id."
    },
    "recipe_id": {
      "type": "string",
      "maxLength": 200,
      "description": "Recipe ID from a prior extraction — loads ingredients from cache."
    },
    "api_key": {
      "type": "string",
      "maxLength": 200,
      "description": "Optional API key for paid access beyond the free tier"
    }
  },
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
suggest_affiliate_productsGenerate 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 schema
{
  "type": "object",
  "properties": {
    "recipe_name": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200,
      "description": "Recipe name (e.g. 'Beef Bourguignon', 'Chocolate Chip Cookies')"
    },
    "ingredients": {
      "type": "array",
      "items": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "minLength": 1,
            "maxLength": 200
          },
          "quantity": {
            "type": "string",
            "maxLength": 50
          },
          "unit": {
            "type": "string"
          },
          "category": {
            "type": "string",
            "enum": [
              "pantry",
              "fresh",
              "dairy",
              "meat",
              "seafood",
              "equipment",
              "specialty",
              "other"
            ],
            "default": "other"
          },
          "optional": {
            "type": "boolean",
            "default": false
          }
        },
        "required": [
          "name"
        ],
        "additionalProperties": false
      },
      "description": "Ingredient list. Provide this OR recipe_id."
    },
    "recipe_id": {
      "type": "string",
      "maxLength": 200,
      "description": "Recipe ID from a prior extraction — loads from cache."
    },
    "api_key": {
      "type": "string",
      "maxLength": 200,
      "description": "Optional API key for paid access beyond the free tier"
    }
  },
  "required": [
    "recipe_name"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}

Resources 0

  • None observed.

Resource templates 0

  • None observed.

Prompts 0

  • None observed.

Remote endpoints

EndpointTransportAuthenticationHealthObserved
No verified remote endpoint is linked.

Recipe Commerce Intelligence MCP Server questions

How do I install Recipe Commerce Intelligence MCP Server?

Install the selected package version with: npm install --save-exact recipe-commerce-mcp@0.1.3

What tools does Recipe Commerce Intelligence MCP Server provide?

Recipe Commerce Intelligence MCP Server exposed 3 tools during independent protocol observation, including extract_recipe_ingredients, match_ingredients_to_products, suggest_affiliate_products.

Is Recipe Commerce Intelligence MCP Server secure?

The selected current version does not yet have completed public verification. Unknown does not mean clean or vulnerable.

Explore related MCP server guides

Curated product and capability guides containing this catalog record.

Official vs Community MCP Servers

Let’s talk about MCP security.

Share your details and our security team will contact you.