← radixscan.io

INDIVIDUAL MCP TOOL

radix_get_nft

Read non-fungibles (NFTs) of a resource.

radixscan.ionone authenticationAvailability not checked

Input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • No write-capable action terms were found; this is not proof that invocation has no side effects.

Parent endpoint

radixscan.io

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.radixscan-mcp]
url = "https://mcp.ai.radixscan.io/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "radixscan-mcp": {
      "type": "http",
      "url": "https://mcp.ai.radixscan.io/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: radixscan-mcp
Remote MCP URL: https://mcp.ai.radixscan.io/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "radixscan-mcp": {
      "url": "https://mcp.ai.radixscan.io/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "radixscan-mcp": {
      "type": "http",
      "url": "https://mcp.ai.radixscan.io/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "radixscan-mcp",
  "transport": "streamable-http",
  "url": "https://mcp.ai.radixscan.io/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • radix_validate_manifest — Authoritatively validate a transaction manifest with the Radix Engine Toolkit.
  • radix_build_transfer — Build a transfer manifest (keyless) moving fungibles and/or NFTs from one account to another.
  • radix_preview_transaction — Simulate a transaction manifest against the network without signing or submitting it.
  • radix_build_manifest — Build a transaction manifest (keyless) from a structured step array — you never write manifest syntax.
  • radix_explain_manifest — Explain in plain language what a transaction manifest does, step by step — the human-readable basis for confirming a signature.
  • radix_resolve_address — Identify any Radix address: its entity type, name and basic metadata.
  • radix_get_resource — Read 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_account — Read an account: fungible balances and NFT holdings (each NFT collection lists the held local ids, not just a count).