npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@dlepi24/tandoor-mcp

v1.0.0

Published

Model Context Protocol server for Tandoor recipe and meal plan management

Downloads

62

Readme

Tandoor MCP Server (Fork)

Extended fork of mc-mario/tandoor-mcp — a Model Context Protocol (MCP) server for Tandoor Recipes meal and recipe management.

This fork adds comprehensive food, keyword, shopping list, supermarket category, and unit management tools beyond the original's recipe and meal plan support. It also adds meal plan sharing support for multi-user households.

What's Different From the Original

  • Food management — list, search, get, update, delete, and merge foods
  • Keyword management — list, search, get, update, and delete keywords/tags
  • Shopping list management — list, add, update, delete, and bulk check/uncheck items
  • Supermarket category management — list, create, update, and delete aisle categories
  • Unit management — list, search, and merge units
  • Meal plan sharingshared parameter on create and update meal plans (array of user IDs)

Installation

Clone and build locally:

git clone https://github.com/dlepi24/tandoor-mcp.git
cd tandoor-mcp
npm install
npm run build

Configuration

  1. Get your API token from Tandoor: Settings > API Tokens > Create new token

  2. Configure your MCP client to point to the local build:

{
  "mcpServers": {
    "tandoor-mcp": {
      "command": "node",
      "args": ["/path/to/tandoor-mcp/build/index.js"],
      "env": {
        "TANDOOR_URL": "https://your-tandoor-instance.com",
        "TANDOOR_TOKEN": "your-api-token"
      }
    }
  }
}

Available Tools

Recipe Tools

  • list_recipes — Browse and search recipes with filtering, sorting, and pagination
  • get_recipe — Get full recipe details by ID
  • create_recipe — Create recipes with steps, ingredients, keywords, servings, and times
  • update_recipe — Update existing recipe metadata and content

Meal Planning Tools

  • list_meal_plans — View scheduled meals filtered by date range
  • get_meal_plan — Get meal plan details by ID
  • create_meal_plan — Schedule a recipe or title-only entry, with optional shared user IDs
  • update_meal_plan — Update meal plans, including sharing with other users
  • delete_meal_plan — Remove a meal plan entry
  • auto_meal_plan — Auto-generate meal plans from keyword-tagged recipes
  • list_meal_types — List available meal types (breakfast, lunch, dinner, etc.)

Food Tools

  • list_foods — List and search foods by name
  • get_food — Get food details including supermarket category and properties
  • update_food — Update food name, category, description, or shopping list behavior
  • delete_food — Delete a food (removes from all recipes)
  • merge_foods — Merge one food into another, moving all recipe references

Keyword Tools

  • list_keywords — List and search keywords/tags
  • get_keyword — Get keyword details by ID
  • update_keyword — Update keyword name or description
  • delete_keyword — Delete a keyword

Shopping List Tools

  • list_shopping_list — List current shopping list entries
  • add_shopping_list_entry — Add an item (auto-creates food/unit if new)
  • update_shopping_list_entry — Update amount, check/uncheck items
  • delete_shopping_list_entry — Remove an item
  • bulk_check_shopping_list — Check or uncheck multiple items at once

Supermarket Category Tools

  • list_supermarket_categories — List all aisle/category groupings
  • create_supermarket_category — Create a new category (e.g., Produce, Dairy, Meat)
  • update_supermarket_category — Update a category name or description
  • delete_supermarket_category — Delete a category

Unit Tools

  • list_units — List and search measurement units
  • merge_units — Merge one unit into another, moving all references

Development

git clone https://github.com/dlepi24/tandoor-mcp.git
cd tandoor-mcp
npm install
npm run build

Credits

Original project by mc-mario, licensed under MIT.

License

MIT