cook-tool
Related Servers
Alternatives to cook-tool
No user-submitted related servers found.
Related Servers
- FlicenseCqualityDmaintenanceEnables management of culinary recipes through web scraping from sites like Marmiton.org, recipe generation, ingredient management, and querying a MongoDB database of recipes, comments, users, and utensils.18-
- AlicenseBqualityDmaintenanceAn AI recipe recommendation server based on the MCP protocol, providing functions such as recipe query, classification filtering, intelligent dietary planning, and daily menu recommendation.51Apache 2.0
- AlicenseBqualityDmaintenanceEnables AI assistants to recommend recipes, plan weekly meals, and solve the "what to eat today" problem by providing access to a comprehensive Chinese recipe database with smart filtering by categories, allergies, and dietary restrictions.52,761 npmISC
- AlicenseAqualityBmaintenanceEnables AI coding agents to browse, read, write, delete, and search Cooklang recipes through the CookCLI HTTP API as MCP tools.7MIT
- FlicenseNot gradedqualityCmaintenanceMCP server for cooking and recipe management powered by Spoonacular API. Enables natural-language recipe search, ingredient-based discovery, nutrition breakdowns, and ingredient substitutions.-
- AlicenseAqualityDmaintenanceAn 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.1MIT
TDQS
Scored across 2 tools
The two tools have clearly distinct purposes: get_all_dishes retrieves a list of dish names (menu), while get_dish_content fetches detailed content for a specific dish based on its name. There is no overlap or ambiguity between these operations.
Both tools follow a consistent verb_noun pattern with 'get_' prefix and snake_case naming (get_all_dishes, get_dish_content). The naming is predictable and readable throughout.
With only 2 tools, the server feels thin for a cooking/recipe domain. It lacks essential operations like creating, updating, or deleting dishes, which limits its utility and scope. A minimal CRUD set would typically have at least 3-4 tools.
The tool surface is severely incomplete for a cooking domain. It only provides read operations (get all and get details), missing create, update, delete, search, or other lifecycle management tools. This will likely cause agent failures when trying to perform full workflows.