Skip to main content
Glama

Lunium — Brazilian PIX and stablecoin payments

List assets and networks settling now

lunium_list_settlement_options
Read-onlyIdempotent

Open — no API key needed, so call this first. Lists the assets and networks that can settle right now, with limits and expected timing.

Call it before quoting whenever the user names an asset or a network you have not already confirmed in this session. The list changes on its own — assets appear and networks get suspended without notice — so never hard-code it, never cache it across sessions, never answer from memory. Polygon (USDT/USDC) is the default and settles in seconds; every other network waits for that chain's confirmations, from about a minute to a few hours. Never promise "instant" outside Polygon.

Do not use it to price anything: it carries no rate. Do not offer the user an asset that is absent from this response, even if it worked yesterday.

Errors: acao=repetir → retry once. acao=esperar → you are over the request budget; back off. acao=parar → the connector is not configured; tell the user instead of retrying.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
networkNoOptional filter, e.g. 'polygon'. Omit to list everything settling now.

TDQS

A4.6/5.0
Behavior5/5

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

Beyond the readOnly/openWorld/idempotent annotations, the description adds critical behavior: the list changes without notice, must never be cached or answered from memory, Polygon is the only fast default, no rate is included, and `acao` error codes map to concrete actions. 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 front-loaded and every section has a purpose, but it is dense: the freshness warnings overlap ('never hard-code it, never cache it... never answer from memory'), and the error-code section is terse. It is not bloated, but tightening those parts would improve it.

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 simple, open-world list call with one optional parameter, the description covers authentication, freshness constraints, expected timing, the pricing exclusion, and error handling. No output schema is present, but the return content is adequately described as assets and networks with limits and timing.

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 covers the single optional `network` parameter at 100%. The description enriches it by identifying Polygon (USDT/USDC) as the default and connecting network choice to settlement timing, which gives agents useful meaning beyond the schema's bare filter example.

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 verb and resource: 'Lists the assets and networks that can settle right now, with limits and expected timing.' It also clearly separates itself from pricing tools with 'Do not use it to price anything', which makes its role distinct among the siblings.

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?

'Call it before quoting whenever the user names an asset or a network you have not already confirmed in this session' is an explicit, actionable trigger. It also gives a clear exclusion ('Do not use it to price anything'), but it does not name the alternative tool for pricing, so it stops just short of a full 5.

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.7/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: create vs verify PIX, quote vs confirm crypto sales, check limits, list options, and sandbox provisioning. The only potentially close pair (get_crypto_sale and verify_pix_payment) are explicitly disambiguated in descriptions, one for internal orders, the other for external verification.

Naming Consistency5/5

All tools follow a consistent `lunium_verb_noun` pattern in snake_case. Verbs are descriptive (check, create, get, list, quote, confirm, verify) and nouns clarify the resource. No mixed conventions or vague verbs.

Tool Count5/5

9 tools is well within the ideal 3-15 range. Each tool covers a distinct step in the payment flow (limits, quoting, confirming, status, verification, sandbox) without redundancy. The count feels justified for the server's scope.

Completeness4/5

The flow for both PIX charges and crypto sales is well covered: create, check limits, get status, quote, confirm, and retrieve receipts. The only notable gap is the absence of a list operation for past charges/sales, and no explicit cancel for a PIX charge, but the descriptions indicate these are handled via statuses and terminal states rather than dedicated tools. Overall, the surface is complete for the stated purpose.

Resources