Skip to main content
Glama

AsterPay — EUR Settlement for AI Agents

Resolve Merchant Payment Endpoint

merchant_resolve
Read-onlyIdempotent

Resolve a European business to its verified payment endpoint (IBAN/BIC) via AsterPay's Merchant Payment Endpoint (MPE), from provable sources only. Provide EITHER a merchant_id OR a business_id together with its business_id_type (vat, y_tunnus, company_number, lei, duns). Tip: business_id_type 'demo' (or business_id 'FI-DEMO-0001') returns a safe demo merchant. Free, read-only — resolution does not move money.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
business_idNoBusiness identifier, e.g. a VAT number
merchant_idNoAsterPay merchant id, e.g. 'mpe-demo-0001'
business_id_typeNoType of business_id: vat, y_tunnus, company_number, lei, duns, or demo

TDQS

A4.4/5.0
Behavior4/5

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

The description explicitly states 'Free, read-only — resolution does not move money,' reinforcing the readOnlyHint annotation. It adds context about 'provable sources only' and the demo endpoint, which goes beyond the annotation's raw flags. 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.

Conciseness5/5

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

Three sentences with no fluff: purpose, parameter requirements, and safety/demo tip. Front-loaded with the main action. Every sentence adds value.

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?

The description covers purpose, parameter usage, and safety. It implies the return is an IBAN/BIC endpoint. It could elaborate on the exact output structure, especially with no output schema, but it's sufficiently complete for an agent to invoke correctly.

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. The description adds semantic linkage between parameters (EITHER merchant_id OR business_id with business_id_type) and clarifies the 'demo' type value, which is not in the schema. This extra context lifts it above baseline.

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 states a specific action ('Resolve a European business to its verified payment endpoint') and clearly names the resource (AsterPay's Merchant Payment Endpoint). This distinguishes it from siblings like check_agent_trust or market_rates, which serve different purposes.

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?

It gives clear usage context: 'Provide EITHER a merchant_id OR a business_id together with its business_id_type' and lists valid types. The demo tip adds practical guidance. It doesn't explicitly state when to avoid this tool, but the parameter combination rules are strong guidance.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.4/5.0
Disambiguation5/5

Each tool targets a distinct aspect of the payment domain: trust assessment, market rates, merchant resolution, and settlement estimation. No overlap in purpose, so an agent can easily select the right tool.

Naming Consistency4/5

All tool names use lowercase with underscores, but they mix verb-first (check_agent_trust) and noun-first (merchant_resolve) patterns. The style is consistent and readable, though not strictly verb_noun throughout.

Tool Count5/5

With 4 tools, the server is well-scoped for a focused payment pre-flight API. Each tool earns its place and the count is within the ideal range.

Completeness3/5

The tools cover pre-payment information needs (trust, rates, merchant endpoints, estimates) but lack any actual payment execution or account management functionality. This is a notable gap for a settlement service, though the read-only nature is clearly stated.