Skip to main content
Glama

ServGhost

topup_create

Top up your USD balance with crypto. Minimum $30, maximum $2000 per top-up. Bonus credit is applied automatically on confirmation: $100 → +$25, $250 → +$75, $500 → +$200, $1000 → +$500, $1500 → +$1000, $2000 → +$2000 (linear interpolation between anchors, no bonus below $100). Call topup_bonus first to see the full tier table. Returns a payment_id, deposit address and amount_crypto — send it from your wallet, then poll payment_status(order_id=payment_id) until status=confirmed.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
amountYesUSD amount to top up (min 30, max 2000)
cryptoYes
dry_runNoset true to preview the response without creating a real invoice
account_tokenNooptional Bearer token; if absent, a new account is created and the token is returned (STORE IT)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations, the description carries the full burden. It discloses minimum/maximum amounts, automatic bonus application with interpolation rules, returned fields, and the send-from-wallet-then-poll behavior. It does not address account_token or dry_run in prose, but those are covered by the schema.

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?

Front-loaded with purpose and limits, then bonus rules and workflow. The bonus anchor table is useful but partially redundant with the instruction to call topup_bonus first, making the description slightly longer than necessary.

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?

There is no output schema, but the description explicitly lists the returned fields (payment_id, deposit address, amount_crypto) and the exact continuation call. Combined with the schema's dry_run and account_token documentation, nothing essential is missing for correct invocation.

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 description coverage is 75%, so the schema already explains amount, dry_run, and account_token; crypto has an enum but is self-explanatory. The description adds no per-parameter detail beyond this, so baseline 3 is appropriate.

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?

States a specific verb and resource: 'Top up your USD balance with crypto.' It also distinguishes itself from siblings like topup_bonus (tier lookup) and payment_status (polling) by describing the actual action and its output.

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 sequencing: 'Call topup_bonus first to see the full tier table' and 'poll payment_status(order_id=payment_id) until status=confirmed.' It lacks a direct contrast with alternative creation tools like create_order, but the intended workflow is clear.

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.

Resources