Skip to main content
Glama
Radiant-Core

Radiant MCP Server

Official
by Radiant-Core

radiant_send_rxd

Send RXD (photons) to any Radiant address by automatically fetching UTXOs, selecting coins, building, signing, and broadcasting the transaction. Provide a WIF private key or key alias to authorize the payment.

Instructions

Send RXD (photons) to an address. Fetches UTXOs, selects coins, builds, signs, and broadcasts the transaction. Requires a WIF private key for the sender address.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
wifNoWIF-encoded private key of the sender (transient — sent through the MCP transport). Provide this OR key_alias, not both.
satoshisYesAmount to send in photons (satoshis). 1 RXD = 100,000,000 photons
key_aliasNoAlias of a key previously registered with radiant_register_key. Preferred — keeps the WIF off the MCP transport.
to_addressYesRecipient Radiant address
fee_per_byteNoFee rate in photons/byte (default: 10000, the mainnet V2 min-relay floor). Lower values will be rejected by relaying nodes on mainnet.
change_addressNoChange address (defaults to sender address)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.6.0

TDQS

A4.1/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 of behavioral disclosure. It transparently states that the tool fetches UTXOs, selects coins, builds, signs, and broadcasts the transaction, which clearly signals a mutating, on-chain operation. It also notes the WIF requirement. It does not mention irreversibility, insufficient-funds errors, or the return format, but the core behavior is well disclosed.

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?

The description is two sentences, front-loaded with the primary purpose ('Send RXD (photons) to an address'). It packs the entire pipeline and the key prerequisite into a compact, scannable format with zero waste. The structure is efficient and easy for an agent to parse quickly.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

This is a complex transaction tool with 6 parameters and no output schema. The description explains the overall process and the WIF requirement, but it omits the return value (likely a transaction ID), error conditions (e.g., insufficient balance, rejected fee), and how the fee_per_byte and change_address parameters affect the operation. For a tool of this complexity, these gaps are notable and could leave an agent uncertain about expected outcomes.

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 100%, so the schema already documents every parameter (wif, key_alias, fee_per_byte, change_address, etc.). The description adds minimal value beyond that – it reiterates the WIF requirement and the photon unit, which are already in the schema. Since the schema handles the heavy lifting, a baseline score of 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?

The description states a clear, specific action: sending RXD (photons) to an address. It goes further to outline the internal pipeline (fetch UTXOs, select coins, build, sign, broadcast), which distinguishes it from siblings like radiant_broadcast_transaction (broadcast only) or radiant_build_transaction (build only). The verb 'Send' plus the resource 'RXD' and the address make the purpose unmistakable.

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?

The description gives clear context: it sends RXD (not tokens), and it explicitly requires a WIF private key, which helps an agent decide when this tool is appropriate. However, it does not mention exclusions, such as using radiant_transfer_token for token transfers or radiant_send_batch for multiple recipients, so it lacks explicit when-not-to-use guidance.

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