AsterPay — EUR Settlement for AI Agents
Server Details
EUR settlement + trust for AI agent commerce: budgets, KYA, merchant discovery. 22 tools.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- AsterPay/erc8183-kya-hook
- GitHub Stars
- 1
Available Tools
4 toolscheck_agent_trustKYA Trust ScoreARead-onlyIdempotentInspect
Know Your Agent (KYA): score how trustworthy an AI agent or wallet is before paying or transacting with it. Returns a trust score 0-100, tier (Open/Verified/Trusted/Enterprise) and components (ERC-8004 identity, sanctions screening, wallet age/activity). Input: an Ethereum address. Free, read-only.
| Name | Required | Description | Default |
|---|---|---|---|
| address | Yes | Ethereum address (0x...) of the agent or wallet to score |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint and idempotentHint, and the description adds value by detailing the return structure (score 0-100, tier, components) and noting it is 'free'. This provides behavioral context beyond the structured annotations, though it does not mention every edge case (e.g., invalid addresses).
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 compact (two sentences) and front-loaded with the acronym and purpose. Every sentence provides essential information: what it does, what it returns, and the input, with no redundancy.
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?
For a simple read-only tool with one parameter, the description covers input, output, use case, and cost/safety, making it fully self-contained. The absence of an output schema is mitigated because the return values are explicitly described.
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% for the single 'address' parameter, and the description merely restates 'Input: an Ethereum address' without adding new meaning. The baseline of 3 is appropriate since the schema fully handles parameter semantics.
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 uses a specific verb ('score') and identifies the resource ('AI agent or wallet'), clearly distinguishing it from sibling tools like market_rates or settlement_estimate. It explicitly states the tool's function: assessing trustworthiness before transactions.
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 phrase 'before paying or transacting with it' provides clear usage context, indicating when this tool is appropriate. However, it does not explicitly contrast with sibling tools or state when not to use it, missing the full 5-point criteria for explicit alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
market_ratesCrypto Market RatesARead-onlyIdempotentInspect
Get current reference market rates used by AsterPay (e.g. USDC, EURC, major crypto rates and FX). No input. Free, read-only.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, openWorldHint, and idempotentHint. The description's 'read-only' reinforces this, and 'No input' and 'Free' add a little context, but it does not disclose any additional behavioral traits (e.g., staleness of rates, rate limits). Since annotations cover the safety profile, a score of 3 is appropriate—it adds some value but not rich behavioral detail.
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, using three short sentences that each add value: what the tool does, that it requires no input, and its free/read-only nature. No wasted words, and it front-loads the core purpose immediately.
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?
For a simple no-parameter read-only tool, the description fully covers what the agent needs: it explains what the tool returns (current market rates), provides concrete examples (USDC, EURC, major crypto rates and FX), and clarifies the resource (AsterPay). No output schema is present, but the description adequately conveys the expected return at a high level. The sibling tools are unrelated, so no further context is needed.
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?
The tool has zero parameters, and the schema coverage is effectively 100% (empty schema). The description explicitly states 'No input,' which is redundant but harmless. There is no parameter meaning to enhance, and the baseline for 0-parameter tools is 4. The description meets this baseline without needing to compensate.
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 a specific action ('Get current reference market rates') and identifies the resource ('used by AsterPay') with examples of the rates included. This unambiguously distinguishes it from the sibling tools (check_agent_trust, merchant_resolve, settlement_estimate), which serve entirely different purposes.
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 description provides clear context that this tool is for retrieving market rates with no input, and it is free and read-only. While it does not explicitly name alternatives or exclusions, the uniqueness of this tool among its siblings makes the intended usage obvious. It lacks an explicit 'when not to use' but still gives sufficient guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
merchant_resolveResolve Merchant Payment EndpointARead-onlyIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| business_id | No | Business identifier, e.g. a VAT number | |
| merchant_id | No | AsterPay merchant id, e.g. 'mpe-demo-0001' | |
| business_id_type | No | Type of business_id: vat, y_tunnus, company_number, lei, duns, or demo |
TDQS
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.
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.
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.
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.
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.
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.
settlement_estimateUSDC→EUR Settlement EstimateARead-onlyIdempotentInspect
Estimate converting a USDC amount to EUR via AsterPay's EUR off-ramp. Returns the exchange rate, AsterPay fee (0.5% + €0.10 on the EU rail), net EUR amount and SEPA Instant timing. Input: a USDC amount. Free, read-only — no payment is made.
| Name | Required | Description | Default |
|---|---|---|---|
| amount | Yes | USDC amount, human-readable like '100' or '5.0' |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already mark readOnly, and the description reinforces with 'Free, read-only — no payment is made.' It also discloses the fee formula (0.5% + €0.10) and the EU rail detail, adding valuable behavioral context beyond the annotations.
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?
Two concise sentences cover purpose, outputs, input, and safety, with no extraneous content. Every sentence earns its place, and the structure is front-loaded with the core action.
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 description covers return values (rate, fee, net, timing) and the fee structure, which is critical given no output schema. For a simple one-parameter tool with strong annotations, this is complete and actionable.
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?
The input schema fully documents the 'amount' parameter with a human-readable format, and the description repeats 'Input: a USDC amount.' With 100% schema coverage, the description adds minimal extra parameter semantics, so the baseline 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 estimates USDC→EUR conversion via AsterPay's EUR off-ramp, with specific outputs (exchange rate, fee, net EUR, SEPA timing). This distinguishes it from siblings like market_rates, which likely provide rates without the settlement fee breakdown.
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 description says 'Estimate converting a USDC amount to EUR' and 'Input: a USDC amount,' which clearly indicates when to use it. It does not explicitly name alternatives or exclusions, but the context is unambiguous for settlement estimation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user or an account that owns the GitHub organization, then choose Claim with GitHub.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
Complete financial infrastructure for AI agents — payments, lending, escrow & more.
Payment infrastructure for AI agents: spending rules, approval flows, single-use virtual cards.
DeFi safety layer for AI agents: wallet safety, token risk, tx decode/simulate. 20 tools.
54 AI agent tools: OSINT, intel feeds, DeFi, crypto, weather, DNS, proxies. x402 micropayments.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceAI agent commerce platform — 141 tools for payments, escrow, identity, marketplace, and Z3 formal verificationMIT
- AlicenseNot gradedqualityFmaintenanceEnables AI agents to perform financial transactions such as direct payments, escrows, and bounty management using natural language with zero code integration. It provides a comprehensive suite of tools for fund streaming, subscriptions, and reputation tracking to facilitate secure agent-to-agent commerce.22MIT
- AlicenseBqualityBmaintenanceAutonomous M2M compliance and trust APIs for AI agents (KYB, OFAC, VAT, Sanctions checking).5MIT
- AlicenseAqualityCmaintenanceTokenized user identity and virtual Visa cards for AI agents. Delegated user commerce- on existing Visa rails.8262MIT
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
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.
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.
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.
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.