Skip to main content
Glama
theYahia

@theyahia/cloudpayments-mcp

by theYahia

void_payment

Cancel an authorized payment to release the hold. Use this action before confirming a transaction to prevent charges.

Instructions

Void an authorized payment (release the hold). Works only before confirmation.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
TransactionIdYesID транзакции для отмены

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.0.1

TDQS

A4/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral burden. It discloses that the action releases a hold and is only valid before confirmation, which is useful, but it does not describe side effects, reversibility, error conditions, or required permissions.

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 two short sentences with no filler. The primary action is front-loaded and the critical constraint is stated immediately afterward.

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 single-parameter, low-complexity tool, the description provides the essential context: what the tool does and when it applies. It lacks explicit guidance on post-confirmation alternatives, but the before-confirmation constraint is sufficient for correct selection in most cases.

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?

The schema already documents TransactionId fully with a description and constraint, so coverage is 100%. The tool description adds no parameter-specific detail, which is acceptable under the baseline for high schema coverage.

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 uses a specific verb ('Void') and resource ('an authorized payment') and clarifies the action with 'release the hold'. It also distinguishes this from siblings like refund_payment by noting it works only before confirmation.

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 a clear precondition: 'Works only before confirmation.' This tells the agent when to use the tool and implicitly when not to use it, though it does not explicitly name alternatives such as refund_payment for confirmed transactions.

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