Read Spanish family recipes from Pequerecetas and rescale them honestly. No API key.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent — or use 1-click editor setup below.
💡 Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
Pequerecetas is a Spanish home-cooking site written for families. It holds a few thousand recipes with their ingredients, their steps and their photographs, and files each one under the diet it suits, the appliance it is cooked in, the occasion it is made for and the age of whoever eats it, from six months up.
This server connects a chat client to that site. You can search its recipes, read one with its quantities rescaled to the number of people at your table, list the values each taxonomy publishes, walk a taxonomy page by page, and rescale any Spanish ingredient list you already hold. It needs no API key and no account.
One-click install
Claude Code
Claude Desktop, Cursor, and any client using the standard config format
Node 24 or later is required, and no environment variable has to be set.
-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.pequerecetas.com, and nothing else: no volume, no port, no credential.
Download mcp-pequerecetas-1.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.
Pequerecetas is written in Spanish and its search matches the words a page was
written with, so recipes are found in Spanish. The ordinary path runs from a
search or a taxonomy to a recipe: a row carries an id, and get_recipe takes
that id.
| Tool | What it does |
|---|---|
get_recipe | Reads one page of the recipe section, rescaled on request. |
search_recipes | Finds recipes by dish or by ingredient. |
list_facets | Lists the values each taxonomy publishes. |
browse_recipes | Reads one taxonomy, page by page. |
scale_ingredients | Rescales any Spanish ingredient list, with no request to the site. |
get_recipeReads one page of the recipe section, and rescales its quantities when a number of servings is given.
| Argument | Type | Required | What it does |
|---|---|---|---|
id | string, 1 to 200 characters | yes | The slug in a recipe's address, as a row carries it. |
servings | integer, 1 to 1000 | no | Rescale the quantities to this many. |
In return: kind, which reads recipe or collection. The site publishes
both at this kind of address and describes them alike, so this is what tells them
apart: a collection is an article gathering other recipes, and it comes back with
headings and recipes, the rows it points at, in place of a recipe's fields.
A recipe carries source_shape, reading structured when the block the page
publishes for search engines held its ingredients and article when they were
read from the body of the page, which is where most of this site's recipes keep
them. Then come title, url, description, published_at, modified_at,
prep_minutes, cook_minutes, total_minutes, categories, cuisines,
keywords, author, author_url, rating, nutrition and images, each
null or empty where the page states nothing. yield says what the recipe was
written for and what it was rescaled to; a page stating no number of servings
comes back with factor at 1 and a note saying why. Each line of ingredients
carries scaling, reading scaled, rounded or unscaled, and is_equipment,
which marks a line naming a tool rather than something eaten.
search_recipesSearches the recipes for a dish or an ingredient.
| Argument | Type | Required | What it does |
|---|---|---|---|
query | string, 1 to 120 characters | yes | A dish or an ingredient, in Spanish. |
limit | integer, 1 to 60 | no | Rows to return. |
In return: rows carrying id, which get_recipe takes, title, url and
image_url. Alongside come result_count for the rows returned and
total_available, which is always null: the site publishes no count of what a
search matched. The site serves its search on a single page and answers a request
for a second with the first again, so these are all the rows it offers for a
query. Some rows are articles gathering recipes, which get_recipe reports as a
collection.
list_facetsLists the values the site browses its recipes by, read from the sitemap each taxonomy publishes.
| Argument | Type | Required | What it does |
|---|---|---|---|
facet | string, 1 character and up | no | One taxonomy. All eight when left out. |
The taxonomies are dieta, edad, ingrediente, ocasion, recetas-de,
tecnica, tipo-de-cocina and tipo-plato: diet, the age of whoever eats it,
main ingredient, occasion, moment of the day, appliance, cuisine and kind of
dish.
In return: facets, each carrying name, value_count and values, whose
value is the slug browse_recipes takes. The values keep the order the site
publishes them in. Reading all eight costs one request per taxonomy. A taxonomy
that could not be read is named in notes and left out of facets, so a
listing short of one never reads like a site that has seven.
browse_recipesReads one page of a taxonomy's recipes.
| Argument | Type | Required | What it does |
|---|---|---|---|
facet | string, 1 character and up | yes | The taxonomy to browse. |
value | string, 1 to 120 characters | yes | A slug from list_facets, such as thermomix. |
page | integer, 1 to 200 | no | Which page to read, the first by default. |
In return: rows of the same shape search_recipes returns, with
page_served for the page the site actually served, has_more for whether its
own pagination offers another, and total_available, always null because the
site prints no count on these pages. The site writes its own slugs, so one built
by hand reaches a page it does not hold and comes back as not_found. The
taxonomies cannot be combined: the site offers no way to ask for two at once.
scale_ingredientsRescales a list of Spanish ingredient lines. It reaches no site.
No reviews yet — be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/mcp-pequerecetas)<a href="https://allmcps.com/mcp/mcp-pequerecetas"><img src="https://allmcps.com/api/badge/mcp-pequerecetas?style=directory" alt="MCP Pequerecetas on AllMCPs" /></a>