Skip to main content
Glama

billing_checkout

Generate a Stripe Checkout URL to collect payments, or issue a local bypass grant to skip payment in non-production environments.

Instructions

Create Stripe Checkout URL (or local bypass grant)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.1/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It states it 'creates' a URL, implying a side effect, but does not mention auth requirements, idempotency, side effects, or what the returned URL is for. The term 'local bypass grant' is unexplained, leaving significant behavioral ambiguity.

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, front-loaded sentence with no fluff. It states the action and a parenthetical alternative in a compact form. Every word earns its place.

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

Completeness2/5

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

For a tool with no parameters, no output schema, and no annotations, the description is too terse to be complete. It does not explain what the returned URL is for, what 'local bypass grant' means, or whether authentication is needed. The ambiguity is especially problematic for a billing-related action.

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?

There are zero parameters, and the schema is empty (100% coverage by default). The description adds no parameter information, but per the rubric, 0 parameters warrants a baseline of 4. Nothing is missing.

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 states a clear verb and resource: 'Create Stripe Checkout URL'. This differentiates it from siblings like billing_portal (customer portal) and billing_machine_pay (payment action). However, the parenthetical '(or local bypass grant)' introduces ambiguity without further explanation, so it's not 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 is given for when to use this tool versus alternatives. The description does not mention conditions, prerequisites, or situations where billing_portal or billing_machine_pay would be more appropriate. Usage must be inferred from the name and context, which is insufficient.

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