# io.github.smeet666/mcp-marmiton (mcpb · mcp-marmiton-2.1.0.mcpb)

Search Marmiton recipes, read ingredients and steps, and scale quantities to any servings.

- Trust score: 48/100 (low)
- Change this week: +5
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-09-20

## Components

- mcpb · `mcp-marmiton-2.1.0.mcpb`: 48/100 (this document), [markdown](https://verifymcp.io/servers/smeet666-mcp-marmiton/https-github-com-smeet666-mcp-marmiton-releases-download-v2-1-0-mcp-marmiton-2-1.md), [page](https://verifymcp.io/servers/smeet666-mcp-marmiton/https-github-com-smeet666-mcp-marmiton-releases-download-v2-1-0-mcp-marmiton-2-1)
- npm · `mcp-marmiton`: 91/100, [markdown](https://verifymcp.io/servers/smeet666-mcp-marmiton/mcp-marmiton.md), [page](https://verifymcp.io/servers/smeet666-mcp-marmiton/mcp-marmiton)

## Channel facts

- Registry: `mcpb`
- Package: `https://github.com/smeet666/mcp-marmiton/releases/download/v2.1.0/mcp-marmiton-2.1.0.mcpb`
- Version: `2.1.0`
- 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-09-20.

- **Supply Chain Security**: 13/100
  - Malware scan not yet available for this package.
  - Known CVEs could not be checked: this artifact ships no SBOM, so there is no dependency list to read. Publishing one would let us assess it.
  - No install/post-install scripts declared.
  - Dependency health could not be checked: this artifact ships no SBOM, so there is no dependency list to read. Publishing one would let us assess it.
- **Provenance & Transparency**: 48/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 9 days ago).
  - Publishes a security disclosure policy (SECURITY.md).
- **Schema Quality & AI Usability**: 66/100
  - AI-judged instruction clarity (excellent).
  - Context-footprint check failed: tool/resource definitions use about 845 tokens (~281/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**: 33/100
  - Stability observed for 10 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.
  - Structured output schemas are declared (100% of tools); any adoption earns full credit.
- **Tool Safety**: 100/100
  - No prompt-injection markers were found in the server instructions, tool names or descriptions we captured.
  - We read all 3 captured tool definition(s), and no name or description among them implies an irreversible operation.
  - An AI judge read all 4 captured unit(s) of tool text and found none that tries to manipulate the model reading it.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

- Download bundle: `https://github.com/smeet666/mcp-marmiton/releases/download/v2.1.0/mcp-marmiton-2.1.0.mcpb`

## 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-09-19 (score 48, +1)

No change was recorded against any check on this day. Stability & Change Management went from 27 to 30. That category is still filling its 30-day observation window: 8 days of observed history at the previous scan, 9 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-09-18 (score 47, +4)

- [functional improvement] Stability: unverified → 0.27

### 2026-09-10 (score 43)

First indexed and scored.

## MCP tools (3)

### `search_recipes` (~153 tokens)

Search recipes

Search Marmiton for recipes by free text: a dish, an ingredient, or both, for example 'tarte aux pommes' or 'poulet curry coco'. Marmiton is a French site, so French terms work best. Returns candidate recipes with the id and URL needed to read one with get_recipe. One call returns one page of results. Marmiton's robots.txt disallows paginating search results, so this server does not, and there is no page parameter: narrow the query instead of asking for more pages.

Input parameters:

- `limit` (integer): Maximum recipes to return from this page of results.
- `query` (string, required): What to search for, in French, for example 'tarte aux pommes'.

Output parameters:

- `notes` (array)
- `query` (string)
- `result_count` (integer)
- `results` (array)
- `source` (string)
- `total_available` (integer): Recipes on this page before applying 'limit'.

### `get_recipe` (~256 tokens)

Get a recipe

Read one Marmiton recipe: ingredients, steps, times, category, rating and nutrition. Give the id returned by search_recipes, or a marmiton.org recipe URL. Set 'servings' to rescale the quantities. Each ingredient reports how it was handled: 'scaled' when the arithmetic came out exact, which a count of eggs, spoons or pinches reaches as readily as a mass in grams, 'rounded' when the value had to be moved to stay usable, and 'unscaled' for lines carrying no quantity at all. Trust that flag rather than recomputing: the point of scaling here is to avoid answers like '2.4 eggs'. Recipes yielding pieces rather than servings are rescaled the same way; check 'yield' to see which. Always cite 'attribution' when showing a recipe to a user.

Input parameters:

- `id` (string): Marmiton recipe id, as returned by search_recipes. Preferred over 'url'.
- `servings` (number): Rescale the ingredients to this many servings. Omit to get the recipe exactly as published.
- `url` (string): Full marmiton.org recipe URL. Only marmiton.org is accepted. Ignored when 'id' is given.

Output parameters:

- `attribution` (string)
- `author` (string|null)
- `category` (string|null)
- `cook_minutes`
- `id` (string)
- `ingredients` (array)
- `notes` (array)
- `nutrition`: Nutrition is given for the recipe as published, not rescaled.
- `prep_minutes`
- `rating`
- `source` (string)
- `steps` (array)
- `title` (string)
- `total_minutes`
- `url` (string)
- `yield` (object)

### `scale_ingredients` (~305 tokens)

Scale an ingredient list

Rescale a list of ingredient lines to a different number of servings, without contacting any website. Give either 'factor' directly, or 'from_servings' and 'to_servings' and the factor is computed. Works on any French ingredient list, whatever its source, so it also serves a recipe the user pasted in. Quantities in grams or millilitres are multiplied and rounded to readable values; a countable thing lands on a half when half of one can be poured, weighed or cut, as a boîte, a sachet, a feuille de gélatine or a cuillère can, and on a whole one when it cannot, as an oeuf, a jaune or a blanc; approximate measures such as a pinch or a handful have their count multiplied in whole units and stay in their own vocabulary. A line writing an article where a digit would go, as in 'un bouchon de rhum' or 'une pincée de sel', is read as one of that measure. Lines carrying no quantity are returned untouched and flagged. Prefer this over doing the arithmetic yourself.

Input parameters:

- `factor` (number): Multiplier to apply. Use this or the from/to pair.
- `from_servings` (number): How many servings the list is written for.
- `ingredients` (array, required): Ingredient lines, for example ['200 g de farine', '3 oeufs', 'sel'].
- `to_servings` (number): How many servings are wanted.

Output parameters:

- `factor` (number)
- `ingredients` (array)
- `notes` (array)
- `rounded_count` (integer): Lines whose value rounding moved away from the exact product, not lines that could have been rounded.
- `scaled_count` (integer)
- `unscaled_count` (integer)

## Diagnostics

Captured diagnostic sections: Provenance. The full working is on the page: https://verifymcp.io/servers/smeet666-mcp-marmiton/https-github-com-smeet666-mcp-marmiton-releases-download-v2-1-0-mcp-marmiton-2-1#diagnostics

## Score history

- 2026-09-20: 48
- 2026-09-19: 48
- 2026-09-18: 47
- 2026-09-17: 43
- 2026-09-16: 43
- 2026-09-15: 43
- 2026-09-14: 43
- 2026-09-13: 43
- 2026-09-12: 43
- 2026-09-11: 43
- 2026-09-10: 43

## Common questions

### What is the io.github.smeet666/mcp-marmiton server?

io.github.smeet666/mcp-marmiton is listed in the public MCP registry as io.github.smeet666/mcp-marmiton. Search Marmiton recipes, read ingredients and steps, and scale quantities to any servings. This page covers its MCPB bundle (https://github.com/smeet666/mcp-marmiton/releases/download/v2.1.0/mcp-marmiton-2.1.0.mcpb).

### Is the io.github.smeet666/mcp-marmiton server safe to use?

io.github.smeet666/mcp-marmiton scores 48 out of 100 on VerifyMCP. It declares no install or post-install scripts. That is a record of what we were able to check automatically, not an endorsement. The category breakdown on this page shows every signal behind the number, including the ones we could not confirm.

### What tools does the io.github.smeet666/mcp-marmiton server expose?

io.github.smeet666/mcp-marmiton exposes 3 tools: search_recipes, get_recipe, scale_ingredients. Their descriptions and schemas cost roughly 714 tokens of context every time the server is loaded.

### What licence is the io.github.smeet666/mcp-marmiton server under?

io.github.smeet666/mcp-marmiton declares the MIT licence, which is OSI-approved. That covers the source only, and says nothing about the cost of any service it calls.

## Links

- Repository: https://github.com/smeet666/mcp-marmiton
- Changelog RSS feed: https://verifymcp.io/servers/smeet666-mcp-marmiton/https-github-com-smeet666-mcp-marmiton-releases-download-v2-1-0-mcp-marmiton-2-1.xml
- Changelog JSON feed: https://verifymcp.io/servers/smeet666-mcp-marmiton/https-github-com-smeet666-mcp-marmiton-releases-download-v2-1-0-mcp-marmiton-2-1.json
- HTML version of this page: https://verifymcp.io/servers/smeet666-mcp-marmiton/https-github-com-smeet666-mcp-marmiton-releases-download-v2-1-0-mcp-marmiton-2-1
