Skip to main content
Glama

listRecipes

Read-onlyIdempotent

List production-ready SwiftUI code recipes. Each recipe is a complete, copy-paste-ready implementation — not a tutorial. Covers native iOS features (SwiftUI, Swift Charts, SpriteKit, Vision, AVFoundation, StoreKit 2, NavigationStack) and backend infrastructure (AWS CDK, Hono, Node.js, Cognito, DynamoDB). Categories: animations, charts, UI components, and full-stack modules including auth, camera, subscriptions, chat, and settings.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
categoryNoFilter recipes by category. Defaults to 'all'.all

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

B3.4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint and destructiveHint, so the safety profile is covered. The description adds useful context about the nature of recipes ('not a tutorial') and the scope of coverage, but does not disclose response format, pagination, or ordering. 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 front-loaded with the core purpose, followed by context and categories. It uses four sentences, the first is the key action. Though dense with technology names, it remains structured and not bloated, earning a 4.

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 list tool with one optional parameter and no output schema, the description provides enough context: what recipes are, their characteristics, and category coverage. It does not explain return format, but that is not critical given the tool's simplicity.

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?

Schema coverage is 100%, so the baseline is 3. The description goes beyond by explaining what the 'module' category includes (auth, camera, subscriptions, chat, settings) and aligning the enum values with natural language, helping the agent understand parameter semantics.

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 description clearly states the tool lists production-ready SwiftUI recipes, using a specific verb and resource. It differentiates from siblings (getRecipe, searchRecipes) by its listing nature, but does not explicitly name alternatives, so it falls short of a 5.

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?

No explicit guidance on when to use listRecipes versus searchRecipes or getRecipe. The description implies a browsing tool but does not state exclusions or alternative cases, leaving the agent to infer usage from the tool name and schema.

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.8/5.0
Disambiguation4/5

getRecipe and searchRecipes are clearly distinct (by ID vs. keyword), but listRecipes and searchRecipes could overlap since both return multiple recipes. Descriptions help clarify that list is for browsing all/categories while search is for targeted keyword queries.

Naming Consistency5/5

All tool names follow the same camelCase verb-noun pattern: getRecipe, listRecipes, searchRecipes. No mixing of styles or vague verbs.

Tool Count4/5

Three tools is on the low end but appropriate for a read-only recipe catalog. Each tool covers a distinct retrieval operation, though a category-filtering tool could be a natural addition.

Completeness4/5

For a recipe lookup service, get-by-id, list-all, and search-by-keyword cover the core workflows. Missing operations like create/update/delete are likely intentional since this appears to be a curated read-only repo.