Skip to main content
Glama

Get recipe preferences

get_recipe_preferences
Read-only

Pull household recipe and shopping preferences, including diet, allergies, dislikes, cuisines, time budget, brands, organic choices, store quirks, and meal planning settings to personalize dinner plans.

Instructions

Household name, recipe preferences prompt (diet, allergies, dislikes, cuisines, time budget), shopping preferences prompt (brands, organic, store quirks) plus settings: plan_day, servings, grocery_store, recipes_per_week, votes_per_member.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
plan_dayYes
servingsYes
timezoneYes
preferencesNo
grocery_storeYes
vote_close_dayYes
vote_close_timeYes
recipes_per_weekYes
votes_per_memberYes
shopping_preferencesNo
reminder_hours_beforeYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so the agent knows this is a safe read. The description adds useful detail about the returned content (preference prompts and settings), but it does not disclose behavioral details beyond that, such as whether it returns defaults, whether it depends on a current household context, or whether it can return empty values. This is adequate but not rich.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact and every item listed contributes meaning. However, it is structured as a comma-separated inventory rather than a clear sentence, and the main action is left to the tool name instead of being front-loaded in the description. Still, it is efficient and free of fluff.

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?

For a simple, zero-parameter read tool with an output schema and read-only annotations, the description largely suffices by identifying the key data fields. It does not explicitly state what the tool returns or how to use the result, but the combination of title, enumerated fields, and output schema makes the behavior reasonably clear.

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?

The tool has zero parameters, so there is little for the description to explain. The baseline for no parameters is 4, and the description appropriately focuses on the data returned rather than introducing irrelevant parameter guidance.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The title and name clearly indicate a read operation for recipe preferences, and the description enumerates exactly what data is involved: household name, recipe and shopping preference prompts, plus settings. It distinguishes this from the sibling get_members, get_ingredients, and update_recipe_preferences, though the description itself lacks an explicit action verb and reads as a noun-phrase list rather than a full statement of behavior.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives no guidance on when to use this tool versus alternatives such as update_recipe_preferences or get_connected_agents. The readOnlyHint annotation and the 'get' naming imply it is for reading, but the description does not state when this should be invoked or what would make a different tool more appropriate.

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