MCP server intelligence profile

Pepesto MCP Server

MCP server for the Pepesto API — give your agent the ability to turn any recipe (a URL, plain text, or a photo) into a matched basket of real supermarket products with live prices, across 26 European supermarkets.

Local OnlyOfficial distributionpepesto-solutions
Verified cleanNpm · 1.7.0

Our scanner tested version 1.7.0 without proving a finding in the methods exercised. This is not a guarantee that every deployment is secure.

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

Install and connect

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

Install @pepesto/pepesto-mcp from npm

Version 1.7.0 declares 1 executable entrypoint.

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

Identity

Canonical slugpepesto-mcp-server-9b18034dDeploymentLocal Only
Canonical packagenpm:@pepesto/pepesto-mcpRepositorypepesto-solutions/pepesto-mcp
First publishedLatest release
Last security verificationAug 21, 2026Classification confidence90%
PublicationPublishedOfficial distributionYes

Distributions

ChannelIdentifierCurrent versionVersionsSource
npm@pepesto/pepesto-mcp1.7.01Repository

Current release

PackageVersionPublished / observedInventorySecurity scan
npm@pepesto/pepesto-mcp1.7.0CurrentSep 5, 20267 toolsSucceeded · 0 resources · 0 promptsVerified clean
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

Provenanceartifact_hash_verifiedSignature
MCP SDK@modelcontextprotocol/sdk Artifact SHA-25630f06d4091c40fbe5bc042ee000592530d69d61fa5338125d01c0a581aae21b4
Scannermcp-proof-engine 0.1.0Scan completedAug 21, 2026
Security rating48 / 100Methodologyversion-rating-1.0
Executable entrypoints
[
  "@pepesto/pepesto-mcp"
]
Rating reasons
[
  "piped_remote_install",
  "security_policy_not_observed"
]
0Proven
688Clean
0Inconclusive
0Flaky
0Errors

Current protocol inventory

2025-06-18Negotiated protocol
pepesto-mcpServer-reported name
1Capability groups
Aug 21, 2026Observed

Tools 7

ToolCategoryAnnotationsRisk
pepesto_catalogDump Pepesto's full indexed catalog for a supermarket (~1-2k SKUs of common cooking ingredients, with names, prices, images, IDs). Optionally pass a webhook_url to receive incremental updates on re-index. Use only when the user has explicitly asked for a catalog dump, market analysis, or storefront build; for normal recipe-to-cart flows use pepesto_oneshot or pepesto_products instead. Cache this query aggressively, no more than one call per day per supermarket is recommended. When presenting supermarket results the user, use the product key as (external) link to the supermarket product itself. Show image if available (json property `image_url`, don't search for external images, skip rendering the Pepesto image if the image has webp extesion)
Input schema
{
  "type": "object",
  "properties": {
    "supermarket_domain": {
      "type": "string",
      "minLength": 1,
      "description": "Supermarket domain or ID, e.g. 'coop.ch', 'tesco.com', 'ah.nl'. See README for the full list."
    },
    "webhook_url": {
      "type": "string",
      "format": "uri",
      "description": "URL to POST incremental catalog updates to."
    }
  },
  "required": [
    "supermarket_domain"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
pepesto_creditsReturn the remaining API credits on the configured Pepesto API key.
Input schema
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "type": "object",
  "properties": {}
}
pepesto_oneshotOne-shot: turn recipe URLs, free-form text, and/or an image into a ready-to-checkout cart for a chosen European supermarket. Returns a redirect_url that opens the Pepesto checkout UI for the user to verify and pay. Internally runs parse + products + session (not exposed to agents) with Pepesto's heuristics. Use this when you want the simplest end-to-end flow; use pepesto_parse + pepesto_products + session (not exposed to agents) for finer control.
Input schema
{
  "type": "object",
  "properties": {
    "content_urls": {
      "type": "array",
      "items": {
        "type": "string",
        "format": "uri"
      },
      "description": "Recipe URLs to parse and shop."
    },
    "content_text": {
      "type": "string",
      "description": "Free-form shopping list or extra items to include."
    },
    "content_image": {
      "type": "string",
      "description": "Base64-encoded recipe image."
    },
    "supermarket_domain": {
      "type": "string",
      "minLength": 1,
      "description": "Supermarket domain or ID, e.g. 'coop.ch', 'tesco.com', 'ah.nl'. See README for the full list."
    }
  },
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
pepesto_parseParse a recipe from a URL, free-form text, or image into a structured object: title, ingredients, nutrition, instructions, and a KgToken you can pass to pepesto_products to build a real cart. Once the response is returned, show recipe title, image if available (json property `image_url`, don't search for external images, skip rendering the Pepesto image if the image has webp extesion), ingredients, steps, nutrition summary, allergens clearly marked, and portions/servings if available. Don't show kg_token, but mark and save it for the next steps (e.g., /products call).
Input schema
{
  "type": "object",
  "properties": {
    "recipe_url": {
      "type": "string",
      "format": "uri",
      "description": "Publicly crawlable recipe URL."
    },
    "recipe_text": {
      "type": "string",
      "description": "Free-form recipe text."
    },
    "recipe_image": {
      "type": "string",
      "description": "Base64-encoded recipe image."
    },
    "locale": {
      "type": "string",
      "description": "BCP 47 locale, e.g. 'en-GB', 'de-CH'."
    },
    "generate_image": {
      "type": "boolean",
      "description": "Whether to generate a shareable image of the recipe."
    }
  },
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
pepesto_predirectTurn a free-form shopping list into a deferred deep link to the Pepesto mobile app, returned as a redirect_url. This is a PUBLIC endpoint: it is FREE to the API client, needs no API key, and returns instantly. Parsing and product matching happen lazily, only after the user opens the link — and the USER (not the API client) is charged when they proceed to checkout in the app. If the app isn't installed, the user is sent to the app store first and the shopping list is preserved until the app opens. This is an end-user / agent-facing handoff (e.g. a person chatting in Claude Desktop who wants to finish shopping on their phone), not a developer-integration endpoint. Choose pepesto_predirect when the cost should fall on the end user and a deferred deep link is acceptable. Choose pepesto_oneshot instead when the client wants the basket matched up front (with prices) and is willing to pay for the matching. PRESENTATION (important): the tool's text output is ready-to-show Markdown — a single tappable, labeled link plus a one-line caption. Surface it to the user exactly as returned; do NOT also paste the long raw URL as plain text. You may add one short sentence telling them to open it on their phone (on a computer, opening it shows a QR code to scan).
Input schema
{
  "type": "object",
  "properties": {
    "shopping_list": {
      "type": "string",
      "minLength": 1,
      "description": "Free-form shopping list. May contain multiple newline-separated lines, e.g. '2 avocados\\n1 loaf of bread\\n500 g tomatoes'."
    },
    "locale": {
      "type": "string",
      "description": "User's locale, e.g. 'de-DE'. Optional."
    }
  },
  "required": [
    "shopping_list"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
pepesto_productsMap one or more recipe KgTokens (and an optional manual shopping list) to concrete supermarket products with prices, images, or currency. Items are merged across recipes to reduce waste; multiple matches per ingredient let you (or the user) pick. Show product title, image if available (json property `image_url`, don't search for external images, skip rendering the Pepesto image if the image has webp extesion)product_id when available linking to an (external) supermarket page (open in a new tab), price, ProductClassification (is_bio, is_frozen, is_substitution) tags. PricePromotion shows if the item is currently on promotion and what's current `promo_percentage`
Input schema
{
  "type": "object",
  "properties": {
    "recipe_kg_tokens": {
      "type": "array",
      "items": {
        "type": "string",
        "minLength": 1,
        "description": "Pepesto recipe KgToken from /parse or /suggest."
      },
      "minItems": 1,
      "description": "KgTokens from pepesto_parse or pepesto_suggest."
    },
    "supermarket_domain": {
      "type": "string",
      "minLength": 1,
      "description": "Supermarket domain or ID, e.g. 'coop.ch', 'tesco.com', 'ah.nl'. See README for the full list."
    },
    "manual_shopping_list": {
      "type": "string",
      "description": "Free-text extra items to add (e.g. 'milk, bananas, kitchen towel')."
    }
  },
  "required": [
    "recipe_kg_tokens",
    "supermarket_domain"
  ],
  "additionalProperties": false,
  "$schema": "http://json-schema.org/draft-07/schema#"
}
pepesto_suggestSearch Pepesto's recipe graph (1M+ recipes) by free-text query and optional filters (cuisine, dietary tags, ingredients to include/avoid, time, servings). Each result includes a KgToken you can pass to pepesto_products. Returned images are licensed for display in your app or website without attribution. Show recipe title, image if available (json property `image_url`, don't search for external images, skip rendering the Pepesto image if the image has webp extesion), ingredients, steps, nutrition summary, allergens clearly marked, and portions/servings if available. Don't show kg_token, but mark and save it for the next steps (e.g., /products call).
Input schema
{
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "minLength": 1,
      "description": "Free-text query that may include cuisine, dietary tags, ingredients to include or avoid, time constraints, and servings, e.g. 'vegan keto dinner low on carb for two'."
    }
  },
  "required": [
    "query"
  ],
  "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.

Pepesto MCP Server questions

How do I install Pepesto MCP Server?

Install the selected package version with: npm install --save-exact @pepesto/pepesto-mcp@1.7.0

What tools does Pepesto MCP Server provide?

Pepesto MCP Server exposed 7 tools during independent protocol observation, including pepesto_catalog, pepesto_credits, pepesto_oneshot, pepesto_parse, pepesto_predirect, pepesto_products, pepesto_suggest.

Is Pepesto MCP Server secure?

Our scanner tested version 1.7.0 without proving a finding in the methods exercised. This is not a guarantee that every deployment is secure.

Explore related MCP server guides

Curated product and capability guides containing this catalog record.

Official vs Community MCP ServersMCP Servers With Completed Verification

Let’s talk about MCP security.

Share your details and our security team will contact you.