verify_payment
Verifica si un pago fue completado. Cuesta 5 créditos.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| session_id | Yes | ID de la sesión de Stripe (cs_...) | |
| stripe_key | Yes | Tu Stripe secret key |
Verifica si un pago fue completado. Cuesta 5 créditos.
| Name | Required | Description | Default |
|---|---|---|---|
| session_id | Yes | ID de la sesión de Stripe (cs_...) | |
| stripe_key | Yes | Tu Stripe secret key |
Changes observed during successful MCP inspections. Dates show when Glama detected each change.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must carry the full burden of behavioral disclosure. It adds the cost ('Cuesta 5 créditos') but does not describe return values, error behavior, or whether the operation is purely read-only. The verification nature implies read-only, but that is not explicit.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is extremely concise: two short sentences that front-load the primary action and include the important cost detail. Every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool has no output schema, so the description should explain what the agent can expect as a result. It does not mention the return format (e.g., boolean, status object), leaving a critical gap for correct invocation and interpretation. The cost detail is useful but not sufficient for full completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with clear definitions for both session_id and stripe_key. The description adds no additional parameter-specific information, so a baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's function with a specific verb ('Verifica') and resource ('si un pago fue completado'). This distinguises it from sibling tools like create_customer or list_payments, which perform different actions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The purpose implies when to use the tool (to verify payment completion), but there is no explicit guidance on when to choose it over alternatives like list_payments, nor any exclusions or prerequisites mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Each tool has a clearly distinct purpose: customer creation, payment link creation, payment listing, and payment verification. There is no overlap or ambiguity between them.
All tools follow the consistent verb_noun snake_case pattern (create_customer, create_payment_link, list_payments, verify_payment). This is predictable and easy to remember.
With 4 tools, the server is well-scoped for a focused payment processing workflow. Each tool is essential and covers the core lifecycle without unnecessary bulk.
The tool set covers the essential flow: create customer, generate payment link, list payments, and verify status. Minor gaps exist (e.g., no refund or customer update), but the core payment workflow is complete.