Skip to main content
Glama
smeet666

mcp-marmiton

mcp-marmiton

npm CI license MCP Registry Glama M8ven LobeHub Install in Cursor Install in VS Code

Marmiton is the largest French cooking site, where home cooks have been publishing their recipes since 1999. Each one gives its ingredients with their quantities, the steps to follow, the preparation and cooking times, the number of servings it is written for, and the ratings the people who made it left behind.

This server connects a chat client to that site. You can search its recipes by dish or by ingredient, read one in full with its ingredients and its steps, and rescale the quantities to the number of people at your table, with each line saying whether the figure is exact or was moved to stay usable in a kitchen. It needs no API key and no account.

Version française


Install

One-click install

Install in Cursor Install in VS Code

Claude Code

claude mcp add marmiton -- npx -y mcp-marmiton

Claude Desktop, Cursor, and any client using the standard config format

{
  "mcpServers": {
    "marmiton": {
      "command": "npx",
      "args": ["-y", "mcp-marmiton"]
    }
  }
}

Node 24 or later is required, and no environment variable has to be set.

With Docker

{
  "mcpServers": {
    "marmiton": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "ghcr.io/smeet666/mcp-marmiton:2.0.1"]
    }
  }
}

-i keeps stdin open, which is where the protocol travels, and -t is left out because a TTY rewrites the stream. The container needs outbound HTTPS to www.marmiton.org, and nothing else: no volume, no port, no credential.

Bundle, without npm

Download mcp-marmiton-2.0.1.mcpb from the latest release and open it. A client that supports MCP bundles installs it on its own, with no npm and no configuration file to edit. The bundle carries its dependencies, so nothing is fetched at install time.

Related MCP server: cookwith-mcp

What you can ask

  • « Trouve-moi une recette de tarte aux pommes. »

  • "Read me that recipe for six people instead of four."

  • "What can I make with courgettes and chèvre?"

  • "Here is a recipe I copied from a book, scale it by 1.5 for me."

  • "How long does the second one take to cook?"

Marmiton is a French site, so its recipes are found in French: tarte aux pommes, poulet curry coco. The ordinary path runs from a search to a reading: search_recipes names an id, and get_recipe takes that id.

Tools

Tool

What it does

search_recipes

Finds recipes by dish or by ingredient.

get_recipe

Reads one recipe, rescaled to a number of servings on request.

scale_ingredients

Rescales any ingredient list, with no request to the site.

The server only reads. It publishes nothing to Marmiton.

search_recipes

Searches the recipes for a dish or an ingredient. Marmiton matches on the opening letters of a word, so a query brings back what the site ranked for it, and the answer says when the titles carry none of the words asked for.

Argument

Type

Required

What it does

query

string, up to 200 characters

yes

What to search for, in French.

limit

integer, 1 to 30, default 10

no

Recipes to serve from this page of results.

In return: rows carrying id, which get_recipe takes; title; url; and image_url, which is null for a recipe published without a picture. Alongside come result_count and total_available, the recipes on this page before limit was applied. Marmiton's robots.txt disallows paging through search results, so one page is what a search reads: narrow the query to see other recipes.

get_recipe

Reads one recipe in full, and rescales its quantities when a number of servings is given.

Argument

Type

Required

What it does

id

string of digits

one of two

The Marmiton recipe id, as search_recipes returned it.

url

a marmiton.org URL

one of two

The address of the recipe, used when id is absent.

servings

number, above 0 and up to 500

no

Rescale the quantities to this many servings.

In return: title, url, ingredients, steps, prep_minutes, cook_minutes, total_minutes, category, author, rating and nutrition, each null when the page publishes none. yield says what the recipe was written for and what it was rescaled to: original_count, original_text, requested, unit for what is being counted, and factor for the multiplier applied. Every ingredient carries original, text, amount, amountMax for a range, unit, and scaling, which reads scaled, rounded or unscaled. The figures are this server's arithmetic, so say they were recomputed when you show them. nutrition describes the recipe as published, at its own number of servings.

scale_ingredients

Applies the same arithmetic to any list of ingredient lines, with no request to the site, so it works on a recipe copied from a book or a family notebook.

Argument

Type

Required

What it does

ingredients

array of 1 to 100 strings, up to 300 chars

yes

The lines to rescale, in French.

factor

number, above 0 and up to 100

one of two

The multiplier to apply.

from_servings

number, above 0 and up to 500

one of two

How many servings the list is written for.

to_servings

number, above 0 and up to 500

one of two

How many servings are wanted.

Pass factor, or the from_servings and to_servings pair.

In return: the factor used, the rescaled ingredients in the shape get_recipe returns, and scaled_count, rounded_count and unscaled_count, which count the lines whose value the rounding moved.

Scaling the quantities

Every ingredient comes back with a scaling flag saying what the rescaling could do with its quantity.

Flag

Meaning

Example

scaled

The value is the product itself.

3 oeufs ×2 → 6 oeufs

rounded

The value was moved to stay usable.

25 cl de lait ×0.667 → 17 cl de lait

unscaled

Carries no quantity, so left exactly as written.

sel, coriandre

A quantity is stated in the unit that suits it, so a line can come back in a different unit from the one the recipe used: 200 g multiplied by twenty reads 4 kg.

How finely an ingredient can be divided depends on what it is. A baguette can be cut in two, in three or in four; an egg cannot be shared out. A quantity landing between the two is rounded, and the rescaled recipe then departs a little from the proportions of the original. The line carries rounded, and its note says what was done.

Configuration

Every variable is optional. Set them in the env block of your client config.

Variable

Default

What it does

MARMITON_USER_AGENT

the project identity

Names your application to Marmiton, with an address where a person can be reached.

MARMITON_MIN_INTERVAL_MS

1000

Gap between two requests, from 500 to 60000. A figure under the floor is refused and this one used.

MARMITON_TIMEOUT_MS

15000

Deadline for one request, from 1000 to 120000.

MARMITON_MAX_RETRIES

3

Attempts after a transient failure, from 0 to 10.

MARMITON_CACHE_TTL_MS

900000

How long a page stays in memory, from 0 to 86400000.

MARMITON_CACHE_MAX_ENTRIES

200

Pages held in memory at once, from 0 to 10000.

MARMITON_LOG_LEVEL

error

silent, error, info or debug, written to stderr.

A value outside its range falls back to the default, and the reason is written to stderr.

Errors

Every failure carries one of six codes, a message, and where it helps a hint naming the next move.

Code

What happened

What to do

not_found

Marmiton answered, and holds no such recipe.

Check the id with search_recipes.

invalid_input

The arguments were refused before any request went out.

Read the message, which names the argument.

rate_limited

Marmiton asked this client to slow down.

Wait the number of seconds the hint names and call again with the same arguments. The recipe is still there.

parse_failure

The page loaded and the expected content was absent.

Report it at the issue tracker.

network_error

The request did not complete.

Try again shortly.

timeout

The request passed its deadline.

Raise MARMITON_TIMEOUT_MS.

As a library

The layer reading Marmiton is published on its own, with its pacing, its cache and its errors, and with no protocol attached.

import { MarmitonClient } from "mcp-marmiton/client";

const client = new MarmitonClient();
const { data, cached } = await client.getRecipe({ id: "18257" });
console.log(data.title, data.ingredients.length, cached);

search and getRecipe each answer { data, cached }, and throw an error carrying one of the six codes. The floor between two requests holds here as well.

Pacing and attribution

Requests go out one at a time with a minimum gap between them, and that floor holds however the server is configured. The User-Agent always ends with the project identity and an address where a person can be reached. Everything is read from the schema.org JSON-LD Marmiton publishes for machines, and the paths its robots.txt disallows are left alone.

Every result carries the title and the address of the recipe, and get_recipe carries the author when the page names one, along with attribution, the title and the address written as one line.

The recipes belong to Marmiton and to the cooks who wrote them. This MCP server is an unofficial project, with no affiliation to Marmiton.

Privacy

This server collects nothing about you and sends nothing to its author. It runs on your machine, contacts www.marmiton.org and nothing else, holds its answers in memory while it runs, and writes nothing to disk. PRIVACY.md states what a request carries and which settings change any of it.

Development

npm install
npm run build:fixtures
npm test
npm run check

Tests run against generated fixtures and make no network request. The live suite, npm run test:live, makes one request per route and runs nightly against the site itself.

Contributing

Bugs, questions and ideas belong in the issue tracker. Pull requests are welcome; opening an issue first helps agree on the shape of the change. See CONTRIBUTING.md.

License

MIT, see LICENSE. The recipes belong to Marmiton and to their authors.


mcp-marmiton (français)

English version

Marmiton est le plus grand site de cuisine français, où des cuisiniers publient leurs recettes depuis 1999. Chacune donne ses ingrédients avec leurs quantités, les étapes à suivre, les temps de préparation et de cuisson, le nombre de parts pour lequel elle est écrite, et les notes laissées par ceux qui l'ont faite.

Ce serveur relie un client de conversation à ce site. On peut y chercher des recettes par plat ou par ingrédient, en lire une en entier avec ses ingrédients et ses étapes, et adapter les quantités au nombre de convives, chaque ligne disant si le chiffre est exact ou s'il a été déplacé pour rester utilisable en cuisine. Aucune clé d'API, aucun compte.

Installation

Installation en un clic

Install in Cursor Install in VS Code

Claude Code

claude mcp add marmiton -- npx -y mcp-marmiton

Claude Desktop, Cursor, et tout client au format de configuration standard

{
  "mcpServers": {
    "marmiton": {
      "command": "npx",
      "args": ["-y", "mcp-marmiton"]
    }
  }
}

Node 24 ou plus récent est nécessaire, et aucune variable d'environnement n'est à renseigner.

Avec Docker

{
  "mcpServers": {
    "marmiton": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "ghcr.io/smeet666/mcp-marmiton:2.0.1"]
    }
  }
}

-i garde l'entrée standard ouverte, qui est le canal du protocole, et -t est omis parce qu'un TTY réécrit le flux. Le conteneur a besoin d'un accès HTTPS sortant vers www.marmiton.org, et de rien d'autre : aucun volume, aucun port, aucun identifiant.

Bundle, sans npm

Téléchargez mcp-marmiton-2.0.1.mcpb depuis la dernière publication et ouvrez-le. Un client qui gère les bundles MCP l'installe seul, sans npm et sans fichier de configuration à modifier. Le bundle emporte ses dépendances, donc rien n'est téléchargé à l'installation.

Ce qu'on peut demander

  • « Trouve-moi une recette de tarte aux pommes. »

  • « Lis-moi cette recette pour six personnes au lieu de quatre. »

  • « Qu'est-ce que je peux faire avec des courgettes et du chèvre ? »

  • « Voici une recette recopiée d'un livre, multiplie-la par 1,5. »

  • « Combien de temps de cuisson pour la deuxième ? »

Marmiton est un site français, donc ses recettes se trouvent en français : tarte aux pommes, poulet curry coco. Le chemin ordinaire va d'une recherche à une lecture : search_recipes nomme un id, et get_recipe reprend cet identifiant.

Les outils

Outil

Ce qu'il fait

search_recipes

Trouve des recettes par plat ou par ingrédient.

get_recipe

Lit une recette, adaptée à un nombre de parts sur demande.

scale_ingredients

Adapte n'importe quelle liste d'ingrédients, sans requête au site.

Le serveur ne fait que lire. Il ne publie rien sur Marmiton.

search_recipes

Cherche des recettes par plat ou par ingrédient. Marmiton fait correspondre les premières lettres d'un mot, donc une requête ramène ce que le site a classé pour elle, et la réponse signale quand les titres ne portent aucun des mots demandés.

Argument

Type

Requis

Ce qu'il fait

query

chaîne, jusqu'à 200 caractères

oui

Ce qu'on cherche, en français.

limit

entier, 1 à 30, défaut 10

non

Recettes à servir depuis cette page de résultats.

En retour : des lignes portant id, que get_recipe reprend ; title ; url ; et image_url, null pour une recette publiée sans photo. Viennent aussi result_count et total_available, les recettes de cette page avant l'application de limit. Le robots.txt de Marmiton interdit de paginer les résultats de recherche, donc une recherche lit une page : resserrez la requête pour voir d'autres recettes.

get_recipe

Lit une recette en entier, et adapte ses quantités quand un nombre de parts est donné.

Argument

Type

Requis

Ce qu'il fait

id

chaîne de chiffres

l'un des deux

L'identifiant Marmiton rendu par search_recipes.

url

une adresse marmiton.org

l'un des deux

L'adresse de la recette, utilisée à défaut d'id.

servings

nombre, au-delà de 0 jusqu'à 500

non

Adapte les quantités à ce nombre de parts.

En retour : title, url, ingredients, steps, prep_minutes, cook_minutes, total_minutes, category, author, rating et nutrition, chacun null quand la page n'en publie pas. yield dit pour quoi la recette est écrite et vers quoi elle a été adaptée : original_count, original_text, requested, unit pour ce qui est compté, et factor pour le multiplicateur appliqué. Chaque ingrédient porte original, text, amount, amountMax pour un intervalle, unit, et scaling, qui vaut scaled, rounded ou unscaled. Les chiffres sont l'arithmétique de ce serveur, donc dites qu'ils ont été recalculés quand vous les montrez. nutrition décrit la recette telle que publiée, pour son propre nombre de parts.

scale_ingredients

Applique la même arithmétique à n'importe quelle liste d'ingrédients, sans requête au site, donc sur une recette recopiée d'un livre ou d'un carnet de famille.

Argument

Type

Requis

Ce qu'il fait

ingredients

tableau de 1 à 100 chaînes, jusqu'à 300 caractères

oui

Les lignes à adapter, en français.

factor

nombre, au-delà de 0 jusqu'à 100

l'un des deux

Le multiplicateur à appliquer.

from_servings

nombre, au-delà de 0 jusqu'à 500

l'un des deux

Le nombre de parts pour lequel la liste est écrite.

to_servings

nombre, au-delà de 0 jusqu'à 500

l'un des deux

Le nombre de parts voulu.

Passez factor, ou le couple from_servings et to_servings.

En retour : le factor employé, les ingredients adaptés dans la forme que rend get_recipe, et scaled_count, rounded_count et unscaled_count, qui comptent les lignes dont l'arrondi a déplacé la valeur.

L'adaptation des quantités

Chaque ingrédient revient avec un drapeau scaling qui dit ce que l'adaptation a pu faire de sa quantité.

Drapeau

Ce que cela veut dire

Exemple

scaled

La valeur est le produit lui-même.

3 oeufs ×2 → 6 oeufs

rounded

La valeur a été déplacée pour rester utilisable.

25 cl de lait ×0,667 → 17 cl de lait

unscaled

Ne porte aucune quantité, laissée telle quelle.

sel, coriandre

Une quantité est exprimée dans l'unité qui lui convient. Après adaptation, une ligne peut donc apparaître dans une autre unité que celle de la recette : 200 g multipliés par vingt donnent 4 kg.

La finesse à laquelle un ingrédient se coupe dépend de sa nature. Une baguette se coupe en deux, en trois ou en quatre ; un oeuf ne se partage pas. Une quantité qui tombe entre les deux est donc arrondie, et la recette adaptée s'écarte alors un peu des proportions de l'originale. La ligne porte rounded, et sa note dit ce qui a été fait.

Configuration

Chaque variable est facultative. Elles se posent dans le bloc env de la configuration du client.

Variable

Défaut

Ce qu'elle fait

MARMITON_USER_AGENT

l'identité du projet

Nomme votre application auprès de Marmiton, avec une adresse où joindre une personne.

MARMITON_MIN_INTERVAL_MS

1000

Écart entre deux requêtes, de 500 à 60000. Une valeur sous le plancher est refusée au profit de celle-ci.

MARMITON_TIMEOUT_MS

15000

Délai d'une requête, de 1000 à 120000.

MARMITON_MAX_RETRIES

3

Tentatives après un échec passager, de 0 à 10.

MARMITON_CACHE_TTL_MS

900000

Durée pendant laquelle une page reste en mémoire, de 0 à 86400000.

MARMITON_CACHE_MAX_ENTRIES

200

Pages gardées en mémoire à la fois, de 0 à 10000.

MARMITON_LOG_LEVEL

error

silent, error, info ou debug, écrit sur la sortie d'erreur.

Une valeur hors de sa plage retombe sur le défaut, et la raison est écrite sur la sortie d'erreur.

Erreurs

Chaque échec porte un des six codes, un message, et quand cela aide une indication du geste suivant.

Code

Ce qui s'est passé

Que faire

not_found

Marmiton a répondu, et n'a pas cette recette.

Vérifiez l'identifiant avec search_recipes.

invalid_input

Les arguments ont été refusés avant toute requête.

Lisez le message, qui nomme l'argument.

rate_limited

Marmiton demande à ce client de ralentir.

Attendez les secondes indiquées et rappelez avec les mêmes arguments. La recette est toujours là.

parse_failure

La page a chargé et le contenu attendu est absent.

Signalez-le sur le suivi d'incidents.

network_error

La requête n'a pas abouti.

Réessayez sous peu.

timeout

La requête a dépassé son délai.

Augmentez MARMITON_TIMEOUT_MS.

Comme bibliothèque

La couche qui lit Marmiton est publiée seule, avec son rythme, son cache et ses erreurs, sans protocole attaché.

import { MarmitonClient } from "mcp-marmiton/client";

const client = new MarmitonClient();
const { data, cached } = await client.getRecipe({ id: "18257" });
console.log(data.title, data.ingredients.length, cached);

search et getRecipe répondent chacun { data, cached }, et lèvent une erreur portant un des six codes. Le plancher entre deux requêtes tient également ici.

Rythme et attribution

Les requêtes partent une à une avec un écart minimal entre elles, et ce plancher tient quelle que soit la configuration. Le User-Agent se termine toujours par l'identité du projet et une adresse où joindre une personne. Tout est lu dans le JSON-LD schema.org que Marmiton publie pour les machines, et les chemins que son robots.txt interdit sont laissés tranquilles.

Chaque résultat porte le titre et l'adresse de la recette, et get_recipe porte l'auteur quand la page le nomme, ainsi qu'attribution, le titre et l'adresse écrits en une ligne.

Les recettes appartiennent à Marmiton et aux cuisiniers qui les ont écrites. Ce MCP est un projet non officiel, sans affiliation à Marmiton.

Confidentialité

Ce serveur ne collecte rien sur vous et n'envoie rien à son auteur. Il tourne sur votre machine, ne joint que www.marmiton.org, garde ses réponses en mémoire le temps qu'il tourne, et n'écrit rien sur le disque. PRIVACY.md dit ce qu'une requête emporte et quels réglages changent cela.

Développement

npm install
npm run build:fixtures
npm test
npm run check

Les tests s'exécutent sur des fixtures engendrées et n'émettent aucune requête. La suite en direct, npm run test:live, émet une requête par route et tourne chaque nuit contre le site lui-même.

Contribuer

Les anomalies, les questions et les idées ont leur place dans le suivi d'incidents. Les propositions de modification sont bienvenues ; ouvrir un ticket d'abord aide à s'accorder sur la forme du changement. Voir CONTRIBUTING.md.

Licence

MIT, voir LICENSE. Les recettes appartiennent à Marmiton et à leurs auteurs.

Available Tools

3 tools
get_recipeGet a recipeA
Read-onlyIdempotent

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
idNoMarmiton recipe id, as returned by search_recipes. Preferred over 'url'.
urlNoFull marmiton.org recipe URL. Only marmiton.org is accepted. Ignored when 'id' is given.
servingsNoRescale the ingredients to this many servings. Omit to get the recipe exactly as published.

Output Schema

ParametersJSON Schema
NameRequiredDescription
idYes
urlYes
notesYes
stepsYes
titleYes
yieldYes
authorYes
ratingYes
sourceYes
categoryYes
nutritionYesNutrition is given for the recipe as published, not rescaled.
attributionYes
ingredientsYes
cook_minutesYes
prep_minutesYes
total_minutesYes

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

While annotations already indicate read-only, idempotent, and non-destructive, the description adds important behavioral details such as how scaling flags work ('scaled', 'rounded', 'unscaled'), the rationale to avoid non-integer quantities, and the yield field for pieces. This goes beyond the annotations, though it doesn't cover all edge cases like error handling or rate limits, but the additions are substantial.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is fairly long but each sentence provides necessary detail, especially the scaling explanation, which is critical for correct usage. It front-loads the core purpose and then dives into specifics. The length is justified, though it could be slightly more streamlined, but it's effective and not wasteful.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's moderate complexity, the description covers the key aspects: input parameters, scaling behavior, yield, and citation requirement. The output schema likely details return structure, so the description doesn't need to repeat that. Annotations cover safety, and the description fills in usage nuances. A few edge cases (e.g., what happens if id not found) aren't mentioned, but overall it's comprehensive for the use case.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3, but the description adds extra semantics for the 'servings' parameter, explaining the scaling behavior and the flag system. For 'id' and 'url', it clarifies the preference and precedence rules beyond what the schema states (e.g., 'Preferred over url', 'Ignored when id is given'). This adds meaningful value, justifying a 4.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states it reads a single Marmiton recipe with specific content (ingredients, steps, times, category, rating, nutrition). It distinguishes itself from sibling tools by referencing search_recipes for obtaining the id and by handling scaling differently from the separate scale_ingredients tool.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicit guidance on when to use this tool: provides the id from search_recipes or a marmiton.org URL, with clear alternatives and exclusions (URL ignored if id given, only marmiton.org accepted). It also instructs when to omit servings and when to use scaling flags, and mentions citing attribution, which effectively covers usage context.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

scale_ingredientsScale an ingredient listA
Read-onlyIdempotent

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
factorNoMultiplier to apply. Use this or the from/to pair.
ingredientsYesIngredient lines, for example ['200 g de farine', '3 oeufs', 'sel'].
to_servingsNoHow many servings are wanted.
from_servingsNoHow many servings the list is written for.

Output Schema

ParametersJSON Schema
NameRequiredDescription
notesYes
factorYes
ingredientsYes
scaled_countYes
rounded_countYesLines whose value rounding moved away from the exact product, not lines that could have been rounded.
unscaled_countYes

TDQS

A4.5/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description discloses detailed behavior: quantities are multiplied and rounded, countable items are handled with fractions, approximate measures stay whole, and lines without quantities are flagged. This goes beyond annotations (readOnly, idempotent) and fully informs the user of the tool's effects.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness2/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is overly verbose and repetitive. For example, the sentence about countable items and approximate measures is long, and the final sentence about 'A line writing an article where a digit would go' restates earlier content. This could be condensed without losing meaning.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers all necessary aspects: what the tool does, how to specify scaling, handling of different unit types, and behavior for missing quantities. It is complete enough for an agent to use the tool effectively without additional clarification.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description adds meaning to parameters: it explains the relationship between factor and from_servings/to_servings, and clarifies that ingredients are lines that may contain quantities. It also describes how lines without quantities are treated, providing more context than the schema descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Rescale a list of ingredient lines to a different number of servings'. It also specifies the input type (French ingredient list) and distinguishes it from sibling tools (search_recipes, get_recipe) by focusing on scaling.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit usage instructions: 'Give either factor directly, or from_servings and to_servings'. It also gives examples and notes about rounding and edge cases, but does not explicitly state when to prefer this tool over siblings, though the purpose is clear enough.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_recipesSearch recipesA
Read-onlyIdempotent

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum recipes to return from this page of results.
queryYesWhat to search for, in French, for example 'tarte aux pommes'.

Output Schema

ParametersJSON Schema
NameRequiredDescription
notesYes
queryYes
sourceYes
resultsYes
result_countYes
total_availableYesRecipes on this page before applying 'limit'.

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint false, and the description does not contradict them. It adds valuable context about the one-page result and robots.txt restriction, plus the return of ids and URLs, enriching the behavioral picture beyond the annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise and well-structured, with each sentence serving a distinct purpose: purpose, examples, result guidance, and pagination constraint. There is no redundancy or fluff.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity and the presence of an output schema, the description covers all necessary aspects: search intent, language considerations, result format, and pagination constraints. It is complete for an agent to understand and use the tool effectively.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema fully describes both parameters, but the description enriches the query parameter with examples and language guidance (e.g., French terms work best). It also clarifies the limit's role by explaining the lack of pagination, adding meaning beyond the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool searches recipes on Marmiton by free text with a specific verb and resource. It distinguishes from sibling tools by mentioning it returns IDs and URLs used by get_recipe, making its role as the search entry point explicit.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides clear context that Marmiton is a French site and advises using French terms. It explicitly explains the single-page limitation and advises narrowing queries instead of expecting pagination, effectively covering when and how to use the tool, though it does not explicitly state when not to use it.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 3 tool updates
    • Changedget_recipe23 fields changed
      • addedOutput schema / properties / author / anyOf
        Added value: +[
        +  {
        +    "type": "string"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • removedOutput schema / properties / author / type
        Removed value: -[
        -  "string",
        -  "null"
        -]
      • addedOutput schema / properties / category / anyOf
        Added value: +[
        +  {
        +    "type": "string"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • removedOutput schema / properties / category / type
        Removed value: -[
        -  "string",
        -  "null"
        -]
      • changedOutput schema / properties / cook_minutes / anyOf
        Previous value: -[
        -  {
        -    "type": "integer"
        -  },
        -  {
        -    "type": "null"
        -  }
        -]New value: +[
        +  {
        +    "maximum": 9007199254740991,
        +    "minimum": -9007199254740991,
        +    "type": "integer"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • addedOutput schema / properties / ingredients / items / properties / amount / anyOf
        Added value: +[
        +  {
        +    "type": "number"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • removedOutput schema / properties / ingredients / items / properties / amount / type
        Removed value: -[
        -  "number",
        -  "null"
        -]
      • addedOutput schema / properties / ingredients / items / properties / amountMax / anyOf
        Added value: +[
        +  {
        +    "type": "number"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • removedOutput schema / properties / ingredients / items / properties / amountMax / type
        Removed value: -[
        -  "number",
        -  "null"
        -]
      • addedOutput schema / properties / ingredients / items / properties / unit / anyOf
        Added value: +[
        +  {
        +    "type": "string"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • removedOutput schema / properties / ingredients / items / properties / unit / type
        Removed value: -[
        -  "string",
        -  "null"
        -]
      • changedOutput schema / properties / nutrition / anyOf
        Previous value: -[
        -  {
        -    "additionalProperties": false,
        -    "properties": {
        -      "calories": {
        -        "type": [
        -          "string",
        -          "null"
        -        ]
        -      },
        -      "carbohydrate": {
        -        "type": [
        -          "string",
        -          "null"
        -        ]
        -      },
        -      "fat": {
        -        "type": [
        -          "string",
        -          "null"
        -        ]
        -      },
        -      "fiber": {
        -        "type": [
        -          "string",
        -          "null"
        -        ]
        -      },
        -      "protein": {
        -        "type": [
        -          "string",
        -          "null"
        -        ]
        -      },
        -      "serving_size": {
        -        "type": [
        -          "string",
        -          "null"
        -        ]
        -      },
        -      "sodium": {
        -        "type": [
        -          "string",
        -          "null"
        -        ]
        -      }
        -    },
        -    "required": [
        -      "calories",
        -      "protein",
        -      "fat",
        -      "carbohydrate",
        -      "fiber",
        -      "sodium",
        -      "serving_size"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "type": "null"
        -  }
        -]New value: +[
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "calories": {
        +        "anyOf": [
        +          {
        +            "type": "string"
        +          },
        +          {
        +            "type": "null"
        +          }
        +        ]
        +      },
        +      "carbohydrate": {
        +        "anyOf": [
        +          {
        +            "type": "string"
        +          },
        +          {
        +            "type": "null"
        +          }
        +        ]
        +      },
        +      "fat": {
        +        "anyOf": [
        +          {
        +            "type": "string"
        +          },
        +          {
        +            "type": "null"
        +          }
        +        ]
        +      },
        +      "fiber": {
        +        "anyOf": [
        +          {
        +            "type": "string"
        +          },
        +          {
        +            "type": "null"
        +          }
        +        ]
        +      },
        +      "protein": {
        +        "anyOf": [
        +          {
        +            "type": "string"
        +          },
        +          {
        +            "type": "null"
        +          }
        +        ]
        +      },
        +      "serving_size": {
        +        "anyOf": [
        +          {
        +            "type": "string"
        +          },
        +          {
        +            "type": "null"
        +          }
        +        ]
        +      },
        +      "sodium": {
        +        "anyOf": [
        +          {
        +            "type": "string"
        +          },
        +          {
        +            "type": "null"
        +          }
        +        ]
        +      }
        +    },
        +    "required": [
        +      "calories",
        +      "protein",
        +      "fat",
        +      "carbohydrate",
        +      "fiber",
        +      "sodium",
        +      "serving_size"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • changedOutput schema / properties / prep_minutes / anyOf
        Previous value: -[
        -  {
        -    "type": "integer"
        -  },
        -  {
        -    "type": "null"
        -  }
        -]New value: +[
        +  {
        +    "maximum": 9007199254740991,
        +    "minimum": -9007199254740991,
        +    "type": "integer"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • changedOutput schema / properties / rating / anyOf
        Previous value: -[
        -  {
        -    "additionalProperties": false,
        -    "properties": {
        -      "best": {
        -        "type": [
        -          "number",
        -          "null"
        -        ]
        -      },
        -      "count": {
        -        "type": [
        -          "number",
        -          "null"
        -        ]
        -      },
        -      "value": {
        -        "type": "number"
        -      }
        -    },
        -    "required": [
        -      "value",
        -      "count",
        -      "best"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "type": "null"
        -  }
        -]New value: +[
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "best": {
        +        "anyOf": [
        +          {
        +            "type": "number"
        +          },
        +          {
        +            "type": "null"
        +          }
        +        ]
        +      },
        +      "count": {
        +        "anyOf": [
        +          {
        +            "type": "number"
        +          },
        +          {
        +            "type": "null"
        +          }
        +        ]
        +      },
        +      "value": {
        +        "type": "number"
        +      }
        +    },
        +    "required": [
        +      "value",
        +      "count",
        +      "best"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • changedOutput schema / properties / total_minutes / anyOf
        Previous value: -[
        -  {
        -    "type": "integer"
        -  },
        -  {
        -    "type": "null"
        -  }
        -]New value: +[
        +  {
        +    "maximum": 9007199254740991,
        +    "minimum": -9007199254740991,
        +    "type": "integer"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • addedOutput schema / properties / yield / properties / factor / anyOf
        Added value: +[
        +  {
        +    "type": "number"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • removedOutput schema / properties / yield / properties / factor / type
        Removed value: -[
        -  "number",
        -  "null"
        -]
      • addedOutput schema / properties / yield / properties / original_count / anyOf
        Added value: +[
        +  {
        +    "type": "number"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • removedOutput schema / properties / yield / properties / original_count / type
        Removed value: -[
        -  "number",
        -  "null"
        -]
      • addedOutput schema / properties / yield / properties / requested / anyOf
        Added value: +[
        +  {
        +    "type": "number"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • removedOutput schema / properties / yield / properties / requested / type
        Removed value: -[
        -  "number",
        -  "null"
        -]
      • addedOutput schema / properties / yield / properties / unit / anyOf
        Added value: +[
        +  {
        +    "type": "string"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • removedOutput schema / properties / yield / properties / unit / type
        Removed value: -[
        -  "string",
        -  "null"
        -]
    • Changedscale_ingredients12 fields changed
      • addedOutput schema / properties / ingredients / items / properties / amount / anyOf
        Added value: +[
        +  {
        +    "type": "number"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • removedOutput schema / properties / ingredients / items / properties / amount / type
        Removed value: -[
        -  "number",
        -  "null"
        -]
      • addedOutput schema / properties / ingredients / items / properties / amountMax / anyOf
        Added value: +[
        +  {
        +    "type": "number"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • removedOutput schema / properties / ingredients / items / properties / amountMax / type
        Removed value: -[
        -  "number",
        -  "null"
        -]
      • addedOutput schema / properties / ingredients / items / properties / unit / anyOf
        Added value: +[
        +  {
        +    "type": "string"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • removedOutput schema / properties / ingredients / items / properties / unit / type
        Removed value: -[
        -  "string",
        -  "null"
        -]
      • addedOutput schema / properties / rounded_count / maximum
        Added value: +9007199254740991
      • addedOutput schema / properties / rounded_count / minimum
        Added value: +-9007199254740991
      • addedOutput schema / properties / scaled_count / maximum
        Added value: +9007199254740991
      • addedOutput schema / properties / scaled_count / minimum
        Added value: +-9007199254740991
      • addedOutput schema / properties / unscaled_count / maximum
        Added value: +9007199254740991
      • addedOutput schema / properties / unscaled_count / minimum
        Added value: +-9007199254740991
    • Changedsearch_recipes6 fields changed
      • addedOutput schema / properties / result_count / maximum
        Added value: +9007199254740991
      • addedOutput schema / properties / result_count / minimum
        Added value: +-9007199254740991
      • addedOutput schema / properties / results / items / properties / image_url / anyOf
        Added value: +[
        +  {
        +    "type": "string"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • removedOutput schema / properties / results / items / properties / image_url / type
        Removed value: -[
        -  "string",
        -  "null"
        -]
      • addedOutput schema / properties / total_available / maximum
        Added value: +9007199254740991
      • addedOutput schema / properties / total_available / minimum
        Added value: +-9007199254740991
  2. 2 tool updatesv1.7.0
    • Changedget_recipe3 fields changed
      • addedOutput schema / properties / ingredients / items / properties / amountMax
        Added value: +{
        +  "description": "Upper bound when the line gives a range, as in '200 à 300 g', with 'amount' holding the lower one. Null when the line states a single amount.",
        +  "type": [
        +    "number",
        +    "null"
        +  ]
        +}
      • changedOutput schema / properties / ingredients / items / properties / scaling / description
        Previous value: -"'scaled' means the arithmetic came out exact, which a count reaches as readily as a mass: one pinch multiplied by six is six pinches. 'rounded' means the value had to be moved to stay usable, to a whole or half unit or to a step a scale can show. 'unscaled' was left alone, because the line carries no quantity."New value: +"'scaled' means the arithmetic came out exact, which a count reaches as readily as a mass: one pincée multiplied by six is six pincées. 'rounded' means the value had to be moved to stay usable, to a whole or half unit or to a step a scale can show. 'unscaled' was left as published, because nothing on the line is the factor's to multiply: the note says which of the two it is."
      • changedOutput schema / properties / ingredients / items / required
        Previous value: -[
        -  "original",
        -  "text",
        -  "amount",
        -  "unit",
        -  "scaling",
        -  "adjusted"
        -]New value: +[
        +  "original",
        +  "text",
        +  "amount",
        +  "amountMax",
        +  "unit",
        +  "scaling",
        +  "adjusted"
        +]
    • Changedscale_ingredients3 fields changed
      • addedOutput schema / properties / ingredients / items / properties / amountMax
        Added value: +{
        +  "description": "Upper bound when the line gives a range, as in '200 à 300 g', with 'amount' holding the lower one. Null when the line states a single amount.",
        +  "type": [
        +    "number",
        +    "null"
        +  ]
        +}
      • changedOutput schema / properties / ingredients / items / properties / scaling / description
        Previous value: -"'scaled' means the arithmetic came out exact, which a count reaches as readily as a mass: one pinch multiplied by six is six pinches. 'rounded' means the value had to be moved to stay usable, to a whole or half unit or to a step a scale can show. 'unscaled' was left alone, because the line carries no quantity."New value: +"'scaled' means the arithmetic came out exact, which a count reaches as readily as a mass: one pincée multiplied by six is six pincées. 'rounded' means the value had to be moved to stay usable, to a whole or half unit or to a step a scale can show. 'unscaled' was left as published, because nothing on the line is the factor's to multiply: the note says which of the two it is."
      • changedOutput schema / properties / ingredients / items / required
        Previous value: -[
        -  "original",
        -  "text",
        -  "amount",
        -  "unit",
        -  "scaling",
        -  "adjusted"
        -]New value: +[
        +  "original",
        +  "text",
        +  "amount",
        +  "amountMax",
        +  "unit",
        +  "scaling",
        +  "adjusted"
        +]
  3. 2 tool updatesv1.5.0
    • Changedget_recipe3 fields changed
      • changedOutput schema / properties / ingredients / items / properties / adjusted / description
        Previous value: -"True when rounding moved the value away from the exact product. A line can be 'rounded' and still land exactly, as three eggs doubled land on six."New value: +"True when rounding moved the value away from the exact product, which is what makes a line 'rounded' rather than 'scaled'."
      • changedOutput schema / properties / ingredients / items / properties / note / description
        Previous value: -"Why the line was rounded, clamped or left alone."New value: +"Why the line was rounded, clamped or left alone, including when the measure is approximate and only its count was multiplied."
      • changedOutput schema / properties / ingredients / items / properties / scaling / description
        Previous value: -"'scaled' was multiplied cleanly. 'rounded' was multiplied then rounded to something countable. 'unscaled' was left alone, either because it carries no quantity or because the measure is approximate by nature."New value: +"'scaled' means the arithmetic came out exact, which a count reaches as readily as a mass: one pinch multiplied by six is six pinches. 'rounded' means the value had to be moved to stay usable, to a whole or half unit or to a step a scale can show. 'unscaled' was left alone, because the line carries no quantity."
    • Changedscale_ingredients3 fields changed
      • changedOutput schema / properties / ingredients / items / properties / adjusted / description
        Previous value: -"True when rounding moved the value away from the exact product. A line can be 'rounded' and still land exactly, as three eggs doubled land on six."New value: +"True when rounding moved the value away from the exact product, which is what makes a line 'rounded' rather than 'scaled'."
      • changedOutput schema / properties / ingredients / items / properties / note / description
        Previous value: -"Why the line was rounded, clamped or left alone."New value: +"Why the line was rounded, clamped or left alone, including when the measure is approximate and only its count was multiplied."
      • changedOutput schema / properties / ingredients / items / properties / scaling / description
        Previous value: -"'scaled' was multiplied cleanly. 'rounded' was multiplied then rounded to something countable. 'unscaled' was left alone, either because it carries no quantity or because the measure is approximate by nature."New value: +"'scaled' means the arithmetic came out exact, which a count reaches as readily as a mass: one pinch multiplied by six is six pinches. 'rounded' means the value had to be moved to stay usable, to a whole or half unit or to a step a scale can show. 'unscaled' was left alone, because the line carries no quantity."
  4. 2 tool updatesv1.3.0
    • Changedget_recipe3 fields changed
      • addedOutput schema / properties / ingredients / items / properties / adjusted
        Added value: +{
        +  "description": "True when rounding moved the value away from the exact product. A line can be 'rounded' and still land exactly, as three eggs doubled land on six.",
        +  "type": "boolean"
        +}
      • changedOutput schema / properties / ingredients / items / properties / note / description
        Previous value: -"Why the line was rounded or left alone."New value: +"Why the line was rounded, clamped or left alone."
      • changedOutput schema / properties / ingredients / items / required
        Previous value: -[
        -  "original",
        -  "text",
        -  "amount",
        -  "unit",
        -  "scaling"
        -]New value: +[
        +  "original",
        +  "text",
        +  "amount",
        +  "unit",
        +  "scaling",
        +  "adjusted"
        +]
    • Changedscale_ingredients4 fields changed
      • addedOutput schema / properties / ingredients / items / properties / adjusted
        Added value: +{
        +  "description": "True when rounding moved the value away from the exact product. A line can be 'rounded' and still land exactly, as three eggs doubled land on six.",
        +  "type": "boolean"
        +}
      • changedOutput schema / properties / ingredients / items / properties / note / description
        Previous value: -"Why the line was rounded or left alone."New value: +"Why the line was rounded, clamped or left alone."
      • changedOutput schema / properties / ingredients / items / required
        Previous value: -[
        -  "original",
        -  "text",
        -  "amount",
        -  "unit",
        -  "scaling"
        -]New value: +[
        +  "original",
        +  "text",
        +  "amount",
        +  "unit",
        +  "scaling",
        +  "adjusted"
        +]
      • addedOutput schema / properties / rounded_count / description
        Added value: +"Lines whose value rounding moved away from the exact product, not lines that could have been rounded."
  5. 3 tool updatesv1.0.2
    • First observedget_recipe
    • First observedscale_ingredients
    • First observedsearch_recipes

TDQS

A4.5/5.0
Disambiguation4/5

search_recipes and get_recipe are clearly separated: one searches, the other reads a specific recipe. A slight overlap exists because get_recipe can also rescale quantities via its servings parameter while scale_ingredients exists solely for rescaling, but the offline and user-supplied use case for scale_ingredients keeps the boundary mostly clear.

Naming Consistency5/5

All three tool names follow a consistent verb_noun snake_case pattern: search_recipes, get_recipe, scale_ingredients. There is no mixing of naming styles or vague verbs.

Tool Count5/5

Three tools is a well-scoped count for this server's purpose: search for recipes, fetch a recipe's details, and rescale ingredient lists. Each tool has a distinct role in the intended workflow and none feel ornamental or duplicated.

Completeness4/5

The core search-to-fetch-to-scaling workflow is covered with no broken path between tools. A minor gap is that search results cannot be paginated and there is no category/filter-based browsing, though the description explicitly suggests narrowing queries as a workaround instead.

Maintenance

ActivityMaintained
ResponsivenessUnresponsive

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    D
    maintenance
    An MCP server that enables users to search for recipes and cooking instructions via the API Ninjas Recipe API. It supports querying specific dishes and provides paginated results for recipe discovery.
    1
    MIT
  • F
    license
    A
    quality
    D
    maintenance
    MCP server that provides cooking recipe lookup, classification, and weekly meal planning based on dietary restrictions and allergies.
    5
    -
  • F
    license
    Not graded
    quality
    B
    maintenance
    MCP server for discovering and retrieving meal recipes from TheMealDB API, enabling search, random meals, category/ingredient filtering, and full recipe details.
    -

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/smeet666/mcp-marmiton'

If you have feedback or need assistance with the MCP directory API, please join our Discord server