Skip to main content
Glama

Belgium Payments (Mollie — Bancontact)

Server Details

Belgium payments for AI agents — Bancontact via Mollie. Never holds funds.

Status
Unhealthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.6/5 across 7 of 7 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool targets a distinct operation: payment creation, subscription flow (create, activate, cancel), status queries, and refunds. There is no ambiguity even between similar tools like query_payment_status and query_subscription.

Naming Consistency5/5

All tools follow the verb_noun pattern with lowercase and underscores: activate_subscription, cancel_subscription, create_payment_link, create_subscription_link, query_payment_status, query_subscription, refund_payment. Consistent and predictable.

Tool Count5/5

With 7 tools covering the essential payment and subscription lifecycle (create, activate, cancel, query, refund), the count is well-scoped for a single payment method server.

Completeness4/5

The tool surface covers the primary operations for one-time payments and subscriptions. Minor gaps exist (e.g., no update tool for subscriptions, no list tool for payments), but the domain is reasonably complete.

Available Tools

7 tools
activate_subscriptionA
Idempotent
Inspect

Second step of the Mollie subscription flow. After the buyer has opened the create_subscription_link URL and paid the first payment (which authorizes the mandate), call this with the customer_id and payment_id that create_subscription_link returned. If the mandate is now valid it creates the recurring subscription (for the periods after the first payment) and returns subscription_id (sub_...). If the buyer has NOT finished authorizing yet, it does NOT error — it returns activated=false with a readable mandate_status so you can keep polling (call query_subscription, wait ~20s, then call activate_subscription again). Idempotent: if the subscription already exists it returns the existing one. The plan parameters (amount / period / interval / total_count) were stored on the first payment, so you do not re-supply them here.

ParametersJSON Schema
NameRequiredDescriptionDefault
payment_idYesThe payment_id (tr_...) returned by create_subscription_link (it carries the stored plan parameters).
customer_idYesThe customer_id (cst_...) returned by create_subscription_link.
Behavior5/5

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

The description goes beyond annotations by detailing idempotent behavior (returns existing subscription), non-error handling when mandate is not yet valid (returns activated=false with mandate_status), and the fact that plan parameters are stored on the first payment and not re-supplied. This adds significant behavioral insight beyond the annotations (idempotentHint: true, destructiveHint: false).

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 a single, well-structured paragraph that efficiently covers prerequisite flow, behavior in both success and polling scenarios, idempotency, and parameter origin. Every sentence adds value with no redundancy.

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?

For a tool with no output schema and moderate complexity, the description provides comprehensive context: the two-step flow, polling instructions, idempotency, and parameter sourcing. It explains what to expect (subscription_id or activated=false) and how to proceed if the mandate is not ready.

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

Parameters4/5

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

The input schema already describes both parameters with 100% coverage. The description adds meaningful context: customer_id and payment_id come from create_subscription_link, and payment_id carries stored plan parameters. This enhances understanding without simply repeating 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 clearly identifies the tool as the second step of the Mollie subscription flow, specifying it activates the subscription after the buyer's first payment. It mentions the inputs (customer_id and payment_id) and the output (subscription_id or activated=false). This distinguishes it from siblings like create_subscription_link, query_subscription, and cancel_subscription.

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 explains when to use the tool (after create_subscription_link and after the buyer has paid the first payment) and provides guidance on handling the case where authorization is not yet complete: poll with query_subscription, wait ~20s, then retry. It also notes idempotency. While it doesn't explicitly state when not to use it, the context is clear enough.

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

cancel_subscriptionA
Destructive
Inspect

Cancel a Belgium subscription so it stops charging. Pass the customer_id (cst_...) and the subscription_id (sub_...) from activate_subscription / query_subscription. Mollie cancellation is immediate — no further billing periods are charged. (If the buyer never authorized the mandate, there is nothing to cancel; just let the first payment expire.)

ParametersJSON Schema
NameRequiredDescriptionDefault
customer_idYesThe customer_id (cst_...) the subscription belongs to.
subscription_idYesThe subscription_id (sub_...) to cancel — get it from activate_subscription or query_subscription.
Behavior5/5

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

Description adds behavioral details: cancellation is immediate, no further charges. Handles edge case about unauthorized mandate. Annotations already indicate destructive but description enriches understanding.

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?

Concise: four sentences covering purpose, instructions, behavior, and edge case. No fluff.

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?

Covers purpose, prerequisites, behavior, and edge case. Does not explicitly state the return value on success, but for a mutation tool this is acceptable. Mostly complete.

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 descriptions already specify the format and source for subscription_id. Description does not add new semantic information for customer_id beyond the schema. Therefore baseline 3.

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 the tool cancels a Belgium subscription to stop charging. It specifies required parameters from related tools and distinguishes from siblings like activate_subscription and query_subscription.

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

Usage Guidelines5/5

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

Provides explicit guidance: use the subscription_id from activate_subscription or query_subscription. Also states when not to use (if mandate not authorized). Clear alternatives.

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

query_payment_statusA
Read-only
Inspect

Check whether a Belgium payment (created by create_payment_link) has been paid. Queries Mollie directly — pull-based, no webhook needed. paid=true when status is PAID.

ParametersJSON Schema
NameRequiredDescriptionDefault
payment_idYesThe payment_id (tr_...) returned by create_payment_link
Behavior4/5

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

Annotations already declare readOnlyHint=true and openWorldHint=true. The description adds behavioral details: it queries Mollie directly, is pull-based, and defines paid=true when status is PAID. No contradictions.

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?

Two sentences, no fluff, front-loaded with the core purpose. Every sentence adds essential information.

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 no output schema, the description explains the key behavioral output (paid=true when status is PAID). For a single-parameter check tool, this is complete.

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

Parameters4/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 value by specifying that payment_id is the one returned by create_payment_link, which provides context 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 clearly states the tool checks whether a Belgium payment (created by create_payment_link) has been paid, with a specific verb ('check') and resource ('payment status'). It distinguishes from the sibling tool create_payment_link.

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 provides context: queries Mollie directly (pull-based) with no webhook needed. It implies usage when you want a synchronous status check without webhooks, but doesn't explicitly state when not to use or contrast with alternatives.

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

query_subscriptionA
Read-only
Inspect

Check a Belgium subscription. Pass customer_id alone for an overview: status AWAITING_AUTHORIZATION (buyer has not authorized the mandate yet — keep polling / call activate_subscription), MANDATE_VALID (buyer authorized; call activate_subscription now to start the recurring plan), or ACTIVE (a subscription is running; subscription_id is returned). Pass customer_id AND subscription_id (sub_...) to check one subscription directly: ACTIVE | PENDING | CANCELED | SUSPENDED | COMPLETED, with next_charge_date. Pull-based — no webhook needed.

ParametersJSON Schema
NameRequiredDescriptionDefault
customer_idYesThe customer_id (cst_...) returned by create_subscription_link.
subscription_idNoOptional subscription_id (sub_...) from activate_subscription to check one subscription directly. Omit for a mandate + subscription overview.
Behavior5/5

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

Annotations declare readOnlyHint and openWorldHint. The description adds rich behavioral context: status codes with implied actions (e.g., calling activate_subscription), returned fields like subscription_id and next_charge_date, and polling suggestion. No contradiction with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single dense paragraph, front-loaded with purpose and structured by two modes using colons. It contains no filler, but could be slightly more formatted for machine readability (e.g., bullet points). Still concise and efficient.

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?

Given no output schema, the description covers key scenarios: two parameter modes, expected statuses, and when to take next steps. It lacks error handling or rate limits, but for a read-only check tool, it provides sufficient context for correct invocation.

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

Parameters4/5

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

Schema coverage is 100% with basic descriptions. The description adds meaning by explaining where each ID comes from (create_subscription_link, activate_subscription) and how omitting vs including subscription_id affects the response. This enhances parameter understanding beyond 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 clearly states the tool checks a Belgium subscription, distinguishing two distinct modes: passing customer_id alone for mandate overview or with subscription_id for specific status. This separates it from siblings like activate_subscription or cancel_subscription.

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 explicitly explains when to use each parameter combination: customer_id alone for mandate status, both IDs for direct subscription check. It also notes pull-based nature. However, it does not explicitly state when not to use or mention alternatives beyond the tool itself.

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

refund_paymentA
Destructive
Inspect

Refund a paid payment (created by create_payment_link). Full refund by default; pass amount for a partial refund where supported. Refunds respect the same owner policy guardrails (x-agentpay-max-amount) as payments — the amount is checked before anything is sent to the gateway.

ParametersJSON Schema
NameRequiredDescriptionDefault
amountNoOptional partial-refund amount in the local currency major unit. Omit for a full refund.
payment_idYesThe payment_id of the paid payment (same id used by query_payment_status)
Behavior4/5

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

The description discloses that refunds are destructive (consistent with destructiveHint=true) and not idempotent (by implication of partial vs full refund). It adds context about policy checks (x-agentpay-max-amount) before gateway submission, which goes beyond annotations. No mention of idempotency behavior or error states, but annotations already cover safety hints.

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?

Two concise sentences: first states core action and default, second adds policy guardrails. No redundant or extraneous information. Well-structured and easy to parse.

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?

Given no output schema, the description could hint at the response (e.g., refund confirmation). However, it covers input parameters, default behavior, partial refund capability, and policy constraints. Sibling tools are listed in context signals. Slightly incomplete on return value, but overall adequate.

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

Parameters4/5

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

Both parameters are fully described in the schema (100% coverage). The description adds value by clarifying that payment_id is the same as used in query_payment_status and that amount is in local currency major unit for partial refunds. This helps the agent correlate parameters across tools.

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 explicitly states 'Refund a paid payment' and ties it to a specific creator tool (create_payment_link). It clearly distinguishes from siblings: create_payment_link creates payments and query_payment_status checks status, while refund_payment processes refunds.

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 explains default behavior (full refund) and optional partial refund via 'amount' parameter. It also references owner policy guardrails, giving context for when the tool can be used. It does not explicitly state when not to use or suggest alternatives, but the guidance is sufficient for typical usage.

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

Discussions

No comments yet. Be the first to start the discussion!

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources