cookidoo-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@cookidoo-mcpsearch for vegetarian recipes with pasta"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
cookidoo-mcp
An MCP server for Cookidoo, built with NestJS. It exposes a Cookidoo account (recipes, shopping list, subscription) to AI tools (Claude, IDEs, agents, …) as a set of MCP tools.
The Cookidoo client is a TypeScript rewrite of the Python
cookidoo-api library. This first
migration covers the core: authentication, account info, recipe search &
details, and shopping-list management.
Architecture
The project follows the same DDD + CQRS + Hexagonal layout as
gardenia-api:
src/
core/
config/ env validation + Cookidoo config (env-var credentials)
mcp/ shared MCP transport (Streamable HTTP) + tool discovery
contexts/
cookidoo/
domain/ types, the ICookidooClient port, exceptions
application/ CQRS commands & queries (dispatch to the port)
infrastructure/ CookidooHttpClient — the TS rewrite of cookidoo-api
transport/mcp/ MCP tools + Zod input schemas
app.module.ts
main.tsTransport: Streamable HTTP (stateless) at
POST /api/mcp.GET/DELETEreturn405(no sessions). A freshMcpServeris built per request.Tools live in
contexts/cookidoo/transport/mcp/and only dispatch Commands/Queries through the CQRS bus — never call the client directly.The client (
CookidooHttpClient) is a singleton behind theCOOKIDOO_CLIENTport. It logs in lazily via the Cookidoo OAuth2 cookie flow and transparently re-authenticates on a401.
Related MCP server: cookwith-mcp
Configuration
Credentials and localization come from environment variables (see
.env.example):
Variable | Required | Default | Description |
| yes | — | Cookidoo account email |
| yes | — | Cookidoo account password |
| no |
| Localization country code |
| no |
| Localization language |
| no |
| Localization base URL |
| no |
| HTTP port |
Running
Local (pnpm)
pnpm install
cp .env.example .env # then fill in your credentials
pnpm dev # watch mode
# or
pnpm build && pnpm prodDocker
docker build -t cookidoo-mcp .With an env file:
cp .env.example .env # then fill in your credentials
docker run --rm -p 3000:3000 --env-file .env cookidoo-mcpOr pass variables directly:
docker run --rm -p 3000:3000 \
-e COOKIDOO_EMAIL=your@email.com \
-e COOKIDOO_PASSWORD=your-password \
cookidoo-mcpOptional localization and port overrides work the same way (-e PORT=3010,
-e COOKIDOO_COUNTRY_CODE=es, etc.).
If you set a custom PORT, map the same port on the host and in the container
(e.g. -p 3010:3010 when PORT=3010).
The MCP endpoint is then available at http://localhost:3000/api/mcp (or your
custom port).
Cursor
Cookidoo credentials live in the server .env — Cursor only needs the HTTP
endpoint. The server must be running (pnpm dev or pnpm prod) before Cursor
connects.
Copy
.cursor/mcp.json.exampleto.cursor/mcp.json.If you changed
PORTin.env, update the URL port to match (default3000).Restart Cursor (Settings → Tools & MCP should list cookidoo).
Authentication is handled by the NestJS process via COOKIDOO_EMAIL /
COOKIDOO_PASSWORD; do not put Cookidoo credentials in mcp.json.
Tools
Tool | Kind | Description |
| query | Account public profile |
| query | Active subscription (or null) |
| query | Search the recipe catalogue with filters |
| query | Full details of a recipe by id |
| query | Recipes on the shopping list |
| query | Ingredient items on the shopping list |
| query | Free-text items on the shopping list |
| command | Add recipes' ingredients to the list |
| command | Remove recipes' ingredients from the list |
| command | Add free-text items to the list |
| command | Remove free-text items from the list |
| command | Empty the shopping list |
Adding a tool
Add a Zod input schema under
transport/mcp/schemas/.Add a Command/Query (+ handler) under
application/that dispatches to theICookidooClientport; extend the port +CookidooHttpClientif the underlying Cookidoo endpoint isn't wired yet.Add the tool under
transport/mcp/tools/, tagged with@McpTool(), and register it in theMCP_TOOLSarray ofcookidoo.module.ts.
Not yet migrated
The upstream library also covers custom recipes, collections (managed/custom) and the meal-planning calendar. These are intentionally left out of this first "core" migration and can be added following the steps above.
License
UNLICENSED — © Sisques Labs.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
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/sisques-labs/cookidoo-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server