Skip to main content
Glama

create_meal_plan

Plan a meal for a specific date and meal type. Provide recipeId to link an existing recipe (from list_recipes) OR name for a custom meal; when recipeId is given any name is ignored and stored as null.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dateYesDate of the planned meal (format: YYYY-MM-DD). Must be from today up to four weeks ahead.
nameNoCustom meal name when no recipe is linked
notesNoOptional free-text notes about the planned meal
mealTypeYesWhich meal slot of the day this entry occupies
recipeIdNoID of an existing recipe (from list_recipes or list_global_recipes)
servingsNoNumber of servings for the planned meal. Between 1 and 100
recipeSourceNoSet 'global' when recipeId refers to a Discover/global recipe (from list_global_recipes); defaults to 'household'

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
itemsYes
titleNo
messageNo
variantNo

TDQS

A4.4/5.0
Behavior4/5

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

The description discloses that when recipeId is provided, any name is ignored and stored as null, a non-obvious behavioral trait not fully captured in the schema. Annotations already indicate a write operation, so no contradiction, but the description leaves unspecified whether creating a meal plan overwrites an existing entry for the same date/meal type.

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?

Two sentences, front-loaded with purpose, followed by essential parameter logic. No filler or redundant details.

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 output schema exists and the schema covers all parameters, the description provides the core operational logic (date, meal type, recipe/name selection) sufficiently. However, it doesn't address conflict behavior with existing meal plans, which would be useful for a create operation.

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?

All seven parameters have schema descriptions (100% coverage), and the description adds precedence semantics between recipeId and name that the schema does not fully explain. It also references list_recipes, providing helpful sourcing context for the recipeId parameter.

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 uses the specific verb 'Plan' with a clear resource 'a meal for a specific date and meal type,' distinguishing it from sibling tools like update_meal_plan and delete_meal_plan. It also explains the two modes (recipeId or custom name), making its function unambiguous.

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?

It clearly states the tool's purpose and provides guidance on choosing between recipeId and name, but does not explicitly mention alternatives like update_meal_plan for modifying existing entries. The context is clear enough that an agent would know when to invoke it.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.9/5.0
Disambiguation5/5

Each tool targets a distinct resource and action, with clear descriptions separating similar-sounding tools like create_calendar_event vs create_recurring_calendar_event. Shopping list operations (add, buy, remove, update) are clearly delineated.

Naming Consistency5/5

All tools follow a verb_noun snake_case pattern: create_*, list_*, update_*, delete_*, get_*, etc. Even special operations like store_memory, recall_memory, and skip_recommendation fit the pattern.

Tool Count1/5

With 68 tools, this server vastly exceeds a reasonable scope; the instruction manual indicates 50+ tools is an extreme mismatch. The breadth suggests the server should be split into focused sub-servers (tasks, shopping, calendar, etc.) rather than a single monolithic interface.

Completeness5/5

The tool surface covers full CRUD/lifecycle for all major resources: tasks, shopping, calendar, contacts, documents, appliances, vehicles, pets, recipes, meal plans, subscriptions, and memories. Additional features like house review, weather, and profile round out the household management domain.

Resources