Skip to main content
Glama

Netherlands Payments (Mollie — iDEAL)

Server Details

Netherlands payments for AI agents — iDEAL via Mollie. Never holds funds.

Status
Healthy
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.5/5 across 7 of 7 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool targets a distinct action or resource: payments vs subscriptions, creation vs activation vs cancellation, and separate query and refund operations. No overlap in purpose.

Naming Consistency5/5

All tool names consistently use the verb_noun pattern with underscores (e.g., create_payment_link, query_subscription), making them predictable for an agent.

Tool Count5/5

With 7 tools, the server is well-scoped for Netherlands payments via Mollie, covering both one-time payments and subscriptions without being too sparse or bloated.

Completeness4/5

Core CRUD-like operations are present for payments (create, status, refund) and subscriptions (create link, activate, cancel, query). Minor gaps: no listing of all payments or subscriptions, and no update for subscription parameters.

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?

Describes behavior beyond annotations: explains that it does not error if buyer hasn't finished authorizing, instead returns activated=false with readable mandate_status. Confirms idempotency (returns existing subscription) and that plan parameters are not re-supplied. No contradiction with annotations (idempotentHint=true, etc.).

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 fairly detailed but each sentence serves a purpose. It is front-loaded with the core function and flow. Minor redundancy (e.g., 'call this with the customer_id and payment_id') but overall efficient.

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?

Thoroughly explains the two-step activation, polling behavior, idempotency, and parameter origins. Although there is no output schema, the description explicitly states the possible return values (subscription_id or activated=false with mandate_status), which is sufficient for the agent to handle both outcomes.

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 descriptions for both parameters. Description adds context: payment_id carries stored plan parameters, and both IDs come from create_subscription_link. This helps the agent understand the source and role of each parameter.

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?

Clearly states it is the second step of the Mollie subscription flow, activates the subscription after first payment. Distinguishes from 'create_subscription_link' (first step) and 'query_subscription' (for polling).

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?

Explicitly says when to use: after buyer has opened the create_subscription_link URL and paid the first payment. Provides a clear flow: if mandate valid, creates subscription; if not, returns activated=false and instructs to poll with query_subscription and retry after ~20s. Also mentions idempotency and that plan parameters are already stored.

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 the Netherlands 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?

Annotations already indicate destructiveHint=true, but the description adds critical behavioral details: 'Mollie cancellation is immediate — no further billing periods are charged' and the note about mandate expiration. This goes beyond annotations by disclosing the exact nature and consequences of the destructive action.

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?

Three sentences with no fluff: first sentence states purpose and effect, second provides parameter guidance, third adds a conditional note. Front-loaded with the most important information, every sentence earns its place.

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 the key behavioral aspects (immediate cancellation, no further charges, special case for unauthorized mandates). Lacks mention of return values or error states, but given no output schema and the tool's simplicity, it is largely complete for agent use.

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 clear descriptions for both parameters. The description reinforces the ID format (cst_..., sub_...) and tells where to obtain them (from activate_subscription/query_subscription), adding useful usage 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 verb (cancel) and resource (the Netherlands subscription), specifies the effect (stops charging, immediate cancellation), and distinguishes from siblings like activate_subscription and query_subscription. The phrase 'Cancel a the Netherlands subscription so it stops charging' is direct and unambiguous.

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?

Provides clear context by specifying the source of IDs (from activate_subscription/query_subscription) and includes a conditional note about mandate authorization (when not to use). While it doesn't explicitly contrast with siblings, it gives practical guidance for correct usage.

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 the Netherlands 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?

Beyond annotations (readOnlyHint, openWorldHint), description adds that it queries Mollie directly, is pull-based, and indicates the output condition '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 with no waste; front-loaded verb and resource. Every word serves a purpose.

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?

Complete for a simple tool with one parameter and no output schema. Explains purpose, method (pull-based), and result interpretation. References sibling for clarity.

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 parameter description tying payment_id to create_payment_link. Description contextualizes with 'the Netherlands payment', adding slight value 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?

Description clearly states the tool checks payment status for Netherlands payments created by sibling create_payment_link. Verb 'check' and resource 'payment status' are specific, and it distinguishes from create_payment_link which creates payments.

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?

Provides context that it queries Mollie directly and is pull-based, implying use when you need immediate status without waiting for a webhook. Could explicitly state 'when not to use', but the guidance is clear and practical.

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 the Netherlands 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.
Behavior4/5

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

Annotations already indicate readOnlyHint=true. Description adds valuable behavioral details: status values with explanations, that it's pull-based, and no webhook needed. No contradictions 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?

Well-structured with a logical flow from overview to specific check. Contains some detail on statuses, but each sentence adds value. Could be slightly more concise, but overall 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?

Comprehensive for a read tool with no output schema: covers two parameter modes, all relevant statuses, and mentions pull-based nature. Lacks error handling or edge cases, but sufficient for typical usage.

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%, so baseline is 3. Description adds significant meaning: explains the two usage modes, provides example statuses for each mode, and clarifies the difference between an overview and a direct subscription check.

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?

Clearly states the verb 'Check' and the resource 'the Netherlands subscription'. Distinguishes between two modes: overview with only customer_id and specific check with subscription_id, differentiating it from sibling tools 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?

Provides explicit when to use each parameter combination: overview vs specific subscription check. Mentions related tools like activate_subscription for context. Lacks explicit 'when not to use', but the purpose and sibling list make it clear.

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?

Discloses that refunds respect owner policy guardrails and that the amount is checked before gateway interaction. Annotations already set destructiveHint=true and readOnlyHint=false; description adds operational detail without contradiction.

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 covering purpose, default behavior, partial refund option, and guardrails. No redundant or extraneous content. Front-loaded with the core action.

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?

With 2 parameters, no output schema, and annotations present, the description adequately covers what the tool does, how to use it (full vs partial), and safety checks. Lacks information about return values or error states, but this is acceptable without an output schema.

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 covers both parameters with descriptions (100% coverage). The tool description adds little beyond the schema: it reiterates that amount is optional for partial refunds. Baseline 3 is appropriate as the schema already provides sufficient meaning.

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 begins with 'Refund a paid payment (created by create_payment_link)', clearly identifying the verb (Refund) and resource (paid payment). It distinguishes from siblings by referencing the creation tool and omitting query/status operations.

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?

States when to use: refund of a paid payment. Provides default behavior (full refund) and variant (partial via amount). Mentions guardrails (x-agentpay-max-amount). Does not explicitly list when not to use, but context with sibling tools implies no overlap.

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