Skip to main content
Glama
aqeelshamz

wixzel-phone-mcp

by aqeelshamz

Add credit

create_topup

Start a prepaid top-up by generating a checkout URL for the user to open and pay. Confirm the exact USD amount beforehand; credit is added after payment settles.

Instructions

Start a top-up. Returns a checkout_url that a HUMAN must open to pay; credit lands once payment settles, not when this returns. Never open the URL or attempt payment yourself. Confirm the amount with the user first.

Requires scope billing:write.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
amount_usdYesAmount to add, in US dollars.
return_urlNoWhere to send the customer after checkout.
idempotency_keyNoIdempotency-Key for safe retries. Generated automatically when omitted. Reuse the SAME value when retrying the SAME logical request; never reuse it for a different one.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.5/5.0
Behavior5/5

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

The description goes well beyond the annotations by explaining that credit is applied only after payment settles, that a human must complete payment, and that automated payment or URL-opening is forbidden. It also discloses the required billing:write scope, giving the agent a full behavioral picture.

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 compact and front-loaded: primary action first, then critical safety and workflow instructions, then the auth requirement. Every sentence adds value, and there is no redundant restatement of schema details.

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?

Despite having no output schema, the description tells the agent what to expect (checkout_url), what not to do, and when credit actually lands. Combined with the annotated openWorldHint and idempotentHint behavior, the tool is fully specified for correct invocation.

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 schema fully documents amount_usd, return_url, and idempotency_key. The description adds only the confirmation guidance related to amount_usd, which is useful but not a substantial expansion of the parameter semantics.

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 opens with 'Start a top-up,' a specific verb and resource, and immediately explains the key output (a checkout_url for human payment). It is clearly distinct from siblings like get_balance, which reads rather than creates.

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?

The description gives clear usage context: confirm the amount with the user first, and never open the URL or attempt payment yourself. It doesn't name explicit alternative tools, but no sibling appears to offer the same top-up functionality, so the guidance is sufficient.

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