Skip to main content
Glama

Update AlzaSubscription installment plan

subscription_update_installment
Destructive

Change an Alza subscription's installment plan by submitting the server-provided update form with a one-time confirmation token, updating the payment schedule after explicit user consent.

Instructions

Change the AlzaSubscription installment plan by executing the server-provided updateInstallmentAction form. High-impact: changes the payment schedule of a paid subscription — use only with explicit user confirmation. Requires a one-time token from prepare_mutation (action=subscription_update_installment). Optional values carries the installment fields verbatim from the form response.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
actionYesAn AppAction object copied verbatim from a prior tool response (e.g. `profile`); it must contain form.meta.href. Never hand-craft URLs.
valuesNoExtra typed form values copied verbatim from the form response (payment/installment/consent fields). Omit if the form returned none.
confirmation_tokenYesOne-time token from `prepare_mutation` prepared with the matching action.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
errNo
msgNo
dataNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.0

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare destructiveHint=true and readOnlyHint=false; the description adds valuable context by emphasizing the high-impact nature (changes payment schedule of a paid subscription) and the requirement for explicit user confirmation. It also reveals the prerequisite token flow, which goes beyond the structured annotations without contradicting them.

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?

Three sentences, each earning its place: purpose and method, impact/confirmation/token prerequisite, and values guidance. Information is front-loaded with the purpose and high-impact warning before details. No redundancy or filler.

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

Completeness5/5

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

Given the presence of an output schema, the description doesn't need to explain return values. It covers the essential preconditions (token from prepare_mutation), the required action object, the optional values, and the high-impact nature. An agent has everything needed to invoke it correctly.

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

Parameters3/5

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

Schema description coverage is 100%, so the baseline is 3. The description adds a small hint that values should be copied verbatim from the form response, but the schema already states 'copied verbatim from the form response' for the values property. No significant additional parameter meaning is provided beyond the schema.

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 states a specific verb and resource ('Change the AlzaSubscription installment plan') and names the exact server-provided form ('updateInstallmentAction'), making it easy to distinguish from siblings like subscription_activate or subscription_overview. It also ties to the relevant subscription domain without ambiguity.

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

Usage Guidelines4/5

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

Provides clear context: high-impact, requires explicit user confirmation, and requires a one-time token from prepare_mutation. It does not explicitly name alternatives or exclusion conditions (e.g., 'use subscription_activate for activation'), but the context is sufficient for an agent to know when this tool is appropriate.

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