Skip to main content
Glama

Tabular Recipe

checkout_status

Read-onlyIdempotent

Check whether an agent-created Stripe checkout is pending, paid, claimed, or expired. Requires its sessionId and secret claimToken, but no API key.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sessionIdYes
claimTokenYes

TDQS

A3.8/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint. The description adds value beyond annotations by stating that no API key is needed, that the check returns one of four statuses, and that it requires a secret claimToken. This provides useful behavioral context.

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?

The description is a single, well-structured sentence with no redundant words. Every phrase adds value (what it checks, what statuses, what's required, what's not needed).

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple, but there is no output schema and the description does not explain what the output object contains beyond listing possible statuses. It also does not address error cases (e.g., invalid token, expired session). However, for a status-check tool, the provided info is moderately complete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate. It mentions parameter names (sessionId, claimToken) and labels claimToken as 'secret', but offers no details on their format, origin, or constraints. For two simple string parameters, this minimal explanation is insufficient to fully guide an agent.

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 clearly states the tool checks the status of an agent-created Stripe checkout, listing the possible statuses (pending, paid, claimed, expired). It uses a specific verb ('check') and resource ('Stripe checkout'), distinguishing it from siblings like claim_checkout or create_checkout.

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?

The description provides basic usage context: it requires sessionId and claimToken but no API key. However, it does not specify when to use this tool versus alternatives (e.g., when to check status vs. claiming or creating), nor does it list any prerequisites or exclusions.

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

A4.1/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: converting, parsing, rendering, and listing styles. No overlap in functionality.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern (convert_recipe, list_styles, parse_recipe, render_recipe) using snake_case.

Tool Count5/5

4 tools is well-scoped for a recipe HTML conversion service, covering core operations without bloat or deficiency.

Completeness5/5

The set covers the full workflow: parsing prose, rendering graphs, a combined convenience call, and style exploration. No obvious gaps.

Resources