Skip to main content
Glama
antonderegt

weekplan-mcp-server

by antonderegt

weekplan_list_recipes

Read-only

List all recipes with ingredients and steps. Use this to retrieve complete recipe data for AI assistants managing meals and ingredients in WeekPlan.

Instructions

List all recipes (with ingredients and steps).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.7/5.0
Behavior3/5

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

readOnlyHint=true already tells the agent this is a safe read. The parenthetical '(with ingredients and steps)' adds useful payload context, signaling that nested detail comes back in one call, but nothing is said about ordering, pagination, completeness limits, or auth needs.

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?

A single short sentence, front-loaded with the verb and resource. Nothing redundant or padded; every clause earns its place.

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?

With no parameters and no output schema, the description carries the return-value burden and does nod at the content (recipes with ingredients and steps). It is close to complete for such a simple tool, though it omits whether results are ordered, filtered, or paginated.

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 takes zero parameters, so there is no parameter semantics to document and the baseline of 4 applies. The description does not need to compensate for any schema gaps here.

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?

States a specific verb+resource ('List all recipes') and even names the payload shape. It is clearly distinguishable from add_recipe/edit_recipe/delete_recipe siblings by the 'list' verb, though it does not explicitly contrast itself with weekplan_list_ingredients.

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

Usage Guidelines3/5

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

Usage is only implied by the verb 'list'; there is no statement of when to reach for this versus the sibling listing tools, nor any prerequisite or exclusion. For a simple read tool the intent is inferable, but no explicit guidance is offered.

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