Developer Tools
radixscan.io
Provides tools for building, validating, previewing, and explaining Radix transaction manifests.
ENDPOINT 1
https://mcp.ai.radixscan.io/mcp
MCP server metadata
- Name
- radixscan-mcp
- Version
- 0.1.0
RadixScan Agent — read-only access to the Radix ledger plus tools to build transaction manifests. Reading ledger state: address-based tools (radix_resolve_address, radix_get_account, radix_get_resource, radix_get_validator, radix_get_transaction) infer the network (mainnet or stokenet) from the address you pass. Address-less tools (radix_get_validator_list) take an explicit network argument. Building a transaction: start with radix_manifest_workflow for the networks, address structure and lifecycle. Browse radix_manifest_templates and radix_manifest_instructions, fill a template's {PLACEHOLDER} slots with concrete values, then check the result with radix_validate_manifest. This server is KEYLESS: it builds and validates manifests but never signs or submits them. Signing and submission happen in the user's Radix wallet.
Known tools 27
radix_validate_manifestAuthoritatively validate a transaction manifest with the Radix Engine Toolkit.
radix_build_transferBuild a transfer manifest (keyless) moving fungibles and/or NFTs from one account to another.
radix_preview_transactionSimulate a transaction manifest against the network without signing or submitting it.
radix_build_manifestBuild a transaction manifest (keyless) from a structured step array — you never write manifest syntax.
radix_explain_manifestExplain in plain language what a transaction manifest does, step by step — the human-readable basis for confirming a signature.
radix_resolve_addressIdentify any Radix address: its entity type, name and basic metadata.
radix_get_resourceRead a fungible or non-fungible resource: name, symbol, icon, divisibility, total supply and its authorities — who may mint, burn, freeze or recall it (with the gating badge), plus neutral factual flags (supply_fixed, mintable, freezable, recallable, rules_locked).
radix_get_accountRead an account: fungible balances and NFT holdings (each NFT collection lists the held local ids, not just a count).
radix_get_validatorRead a validator: registration status, fee, total staked XRD, uptime, website, and its stake-unit (LSU) and claim-NFT resource addresses.
radix_get_validator_listList a network's validators ranked by stake, each with its effective fee (reconciled against the current epoch, like radix_get_validator) and uptime.
radix_get_transactionRead a committed transaction: status, fee, classification, per-entity balance changes and the decompiled manifest.
radix_list_transactionsList recent committed transactions on a Radix network, newest first — network-wide, or scoped to one entity via "address".
radix_get_component_stateRead the current on-ledger state of a component: every stored field, SBOR-decoded with field names — e.g.
radix_get_key_value_storeRead the entries of a Scrypto KeyValueStore — the storage behind the internal_keyvaluestore_ references that radix_get_component_state lists under key_value_stores (e.g.
radix_get_nftRead non-fungibles (NFTs) of a resource.
radix_get_resource_holdersList the accounts/components that hold a resource, sorted by holding descending — so the first page is the top holders.
radix_find_entities_by_badgeFind the on-ledger entities a badge controls: given a badge resource (optionally a specific NFT local id), list every component, resource, pool or locker that names that badge as a role requirement — i.e.
radix_get_blueprint_interfaceDiscover the callable interface of a package or component: every function and method of its blueprint(s) with access requirements (public vs role-protected — which calls need a badge proof) — the Radix equivalent of reading a contract ABI.
radix_manifest_workflowStart here to build a transaction.
radix_manifest_instructionsList every manifest instruction with a one-line summary.
radix_manifest_instructionDetailed description of one manifest instruction (syntax and arguments); set examples=true for code samples.
radix_manifest_templatesList ready-made manifest templates (transfer, stake, unstake, claim, mint, burn, swap) plus the placeholder convention.
radix_manifest_templateReturn one manifest template: its body with {PLACEHOLDER} slots plus how to fill them.
radix_list_ecosystem_servicesDiscover other agent-facing entries in the Radix ecosystem — agent MCP servers (e.g.
radix_lookup_entityLook up the canonical on-ledger address of a well-known Radix entity (token, dApp component) by name or symbol — the inverse of radix_resolve_address, for when you have a name but not an address.
radix_request_signatureRequest a human signature for a transaction manifest (non-custodial, human-in-the-loop).
radix_signature_statusCheck the status of a signing request created by radix_request_signature.