Skip to main content
Glama
RobsonAdvincula

SIBS Payment MCP

sibs_mbway_payment

Initiate an MB WAY payment by sending a notification to the customer's MB WAY app, using their phone number with country code (e.g., 351#912345678) to request approval.

Instructions

Initiate MB WAY payment. Sends notification to customer's MB WAY app. Phone format: '351#912345678'.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
amountYesAmount in minor units (e.g., 1000 = 10.00 EUR)
currencyNoCurrency code (default: EUR)EUR
customerPhoneYesCustomer phone with country code (e.g., '351#912345678')
transactionIdYesSIBS transaction ID for the MB WAY payment

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.7/5.0
Behavior3/5

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

With no annotations, the description carries the full burden of behavioral disclosure. It discloses the customer-facing side effect of sending a notification to the MB WAY app, which is useful. It does not mention expected outcomes, failure modes, authorization state, or whether the payment remains pending, but the core initiation behavior is still visible.

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, purposeful sentences. It states the action first, then the key behavioral side effect and the phone format. There is no filler or redundant background.

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

Completeness3/5

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

The schema is rich enough to cover all parameter meanings, and the description conveys the core action and notification behavior. However, with no output schema and no annotations, the description omits any sense of the payment lifecycle, prerequisites like where transactionId comes from, or what the caller should expect in return.

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 input schema already provides 100% parameter coverage, so the baseline is 3. The description adds the phone format example, but that same example already appears in the customerPhone property description, so the description provides no meaningful extra 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 clearly states a specific action — 'Initiate MB WAY payment' — and adds a distinguishing behavioral detail: it sends a notification to the customer's MB WAY app. This separates it from siblings like sibs_payment_status, sibs_capture_payment, or sibs_refund_payment even without explicitly naming them.

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

Usage Guidelines3/5

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

The description implies the tool is used when initiating an MB WAY payment and when a customer needs to receive a notification for approval. However, it gives no explicit guidance about when not to use it or how it differs from sibs_create_checkout or sibs_capture_payment.

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