Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, email [email protected] and we’ll put it right.

io.github.vdappdev2/chain

NPM · @VERUSIDX/CHAIN-MCP · SCANNED AUG 3

Foundation MCP server — chain discovery, daemon management, health checks, raw transactions

Available components

+24 this week 69 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →

Supply Chain Security87
  • No malware found by supply-chain analysis.Pass
  • Only part of the dependency tree could be resolved (96 of 100), so this covers what we could see, not the whole tree.Partial
  • No install/post-install scripts declared.Pass
  • Only part of the dependency tree could be resolved (96 of 100), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
Schema Quality & AI Usability75
  • AI-judged instruction clarity (excellent).Pass
  • Context-footprint check failed: tool/resource definitions use about 1538 tokens (~139/item across 11 items; 11 tools + 0 resources), over budget; trim descriptions and params. See how to fix → Fail
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management23
  • Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage100
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 100% of tool parameters carry a description.Pass
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · @verusidx/chain-mcp

# add to Claude Code
claude mcp add vdappdev2-chain -- npx -y @verusidx/chain-mcp
# add to Codex CLI
codex mcp add vdappdev2-chain -- npx -y @verusidx/chain-mcp
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "vdappdev2-chain": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@verusidx/chain-mcp"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add vdappdev2-chain --command npx --arg -y --arg @verusidx/chain-mcp
# ~/.hermes/config.yaml
mcp_servers:
  vdappdev2-chain:
    command: "npx"
    args: ["-y", "@verusidx/chain-mcp"]
// mcp.json
{
  "mcpServers": {
    "vdappdev2-chain": {
      "command": "npx",
      "args": [
        "-y",
        "@verusidx/chain-mcp"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 3 Aug 26 +1

    No change was recorded against any check on this day. Stability & Change Management went from 20 to 23. That category is still filling its 30-day observation window: 6 days of observed history at the previous scan, 7 at this one. The score rises as the window fills, whether or not the server changes.

  • 2 Aug 26 +43
    • Provenance: unverified → fail security
    • Known CVEs: unverified → partial security
    • Install scripts: unverified → pass security
    • Malware scan: unverified → pass security
    • Stability: Stability not yet verified: we do not have a sandbox capture of the MCP schema this version of the package serves yet. security
    • Capabilities: pass → unverified functional
    • Maintenance: unverified → pass functional
    • Dependency health: unverified → partial functional
    • License: unverified → pass functional
    • Stability: unverified → 0.20 functional
    • Schema quality: unverified → excellent functional
    • Licence: MIT functional
  • 1 Aug 26 +11
    • Source repository: unverified → pass security
    • Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window). security
    • MCP protocol: unverified → pass functional
  • 31 Jul 26 −10
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 30 Jul 26 −21
    • Tool coverage: 100 → unverified functional
    • First check of Schema quality: unverified functional
  • 27 Jul 26 45

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 3 Aug 2026 · Analysed npm/@verusidx/[email protected]

Provenance none

Ecosystem: npm · Outcome: none

Dependencies 96 packages

96 packages in the resolved dependency tree · 96 deprecated · 29 stale.

The dependency tree was only partially resolved, so these counts may be incomplete.

MCP tools — 11 exposed · ~1,538 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
getblockcount ~81

Get the current block count (height of the longest chain). Returns a single number — the most lightweight way to check the current block height. Use this for polling block progress, such as waiting for a name commitment to confirm before calling registeridentity.

NameTypeReqDescription
chainstringyesChain to query (e.g., "VRSC", "vrsctest")

No output schema declared.

No examples provided.

getcurrency ~261

Get the full definition and current state of a currency. Returns the currency's configuration (reserves, weights, fees, preallocations, eras) and its latest on-chain state (supply, reserve balances, conversion prices). Use this to check if a currency exists, understand its structure (simple token vs. fractional basket), read current reserve ratios and conversion prices before performing conversions, or look up registration fees before registering identities or defining currencies on a specific chain. Fee interpretation: idregistrationfees is the fee amount. For basket currencies, if idimportfees is a satoshi-scale value it encodes which reserve currency the fee is denominated in: 0.00000000 = first reserve (index 0), 0.00000001 = second reserve (index 1), etc. Default idimportfees (e.g., 0.02) means the fee is in the basket currency itself, but defaults may differ per chain.

NameTypeReqDescription
chainstringyesChain to query (e.g., "VRSC", "vrsctest")
currencynamestringyesCurrency name (e.g., "bitcoins", "NATI🦉") or i-address. Also accepts "hex:<currencyidhex>" format.

No output schema declared.

No examples provided.

getinfo ~76

Get blockchain and node information for a running chain. Returns version, block height, connections, difficulty, sync status, and fee configuration. Use this to check whether a daemon is running and synced before performing operations on that chain.

NameTypeReqDescription
chainstringyesChain to query (e.g., "VRSC", "vrsctest")

No output schema declared.

No examples provided.

getwalletinfo ~104

Get wallet state for a running chain. Returns balances (confirmed, unconfirmed, immature, staking-eligible), reserve currency balances, transaction count, and key pool status. Use this for a quick overview of wallet health and native + reserve currency holdings. Note: reserve_balance is an object keyed by currency name, showing all non-native currencies held in the wallet.

NameTypeReqDescription
chainstringyesChain to query (e.g., "VRSC", "vrsctest")

No output schema declared.

No examples provided.

help ~133

Get daemon documentation for any RPC command. With no command argument, returns a list of all available RPCs grouped by category. With a command name, returns detailed usage including parameters, types, and examples. Use this when an agent needs to understand an RPC that isn't exposed as an MCP tool, or to check exact parameter formats before constructing a complex call.

NameTypeReqDescription
chainstringyesChain to query (e.g., "VRSC", "vrsctest")
commandstringRPC command name to get help for (e.g., "sendcurrency", "getidentity"). Omit to list all commands.

No output schema declared.

No examples provided.

refresh_chains ~102

Re-run chain discovery and rewrite the chain registry file. Call this after starting a new daemon, stopping a daemon, or when the registry appears stale. Discovery scans OS-appropriate data directories for .conf files, parses them, and calls getinfo on each discovered chain to confirm it's running. PBaaS chains with hex-encoded folder names are resolved to friendly names via the VRSC daemon. The updated registry is written atomically. Available in read-only mode.

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

sendrawtransaction ~140

Broadcast a signed raw transaction to the network. Takes a hex-encoded signed transaction and submits it to the local node, which relays it to the network. Returns the transaction hash (txid) on success. This is the companion to definecurrency — definecurrency returns a signed hex that must be broadcast here. Also used for any pre-signed transaction hex.

NameTypeReqDescription
allowhighfeesbooleanAllow transactions with unusually high fees. Default: false.
chainstringyesChain to broadcast on (e.g., "VRSC", "vrsctest")
hexstringstringyesThe hex-encoded signed raw transaction

No output schema declared.

No examples provided.

signrawtransaction ~233

Sign inputs of a raw transaction. Takes a hex-encoded transaction and signs it with keys available in the wallet (or with explicitly provided private keys). Returns the signed hex and whether all inputs are fully signed. Use this for multisig workflows where multiple parties need to sign. For definecurrency in the normal single-signer case, the hex is returned already signed — signrawtransaction is not needed.

NameTypeReqDescription
chainstringyesChain to sign for (e.g., "VRSC", "vrsctest")
hexstringstringyesThe hex-encoded raw transaction to sign
prevtxsarrayArray of previous dependent transaction outputs not yet in the blockchain.
privatekeysarrayArray of base58-encoded private keys to use for signing. If provided, only these keys are used.
sighashtypestringSignature hash type. Default: "ALL". Options: "ALL", "NONE", "SINGLE", "ALL|ANYONECANPAY", "NONE|ANYONECANPAY", "SINGLE|ANYONECANPAY".

No output schema declared.

No examples provided.

status ~85

Check registry freshness and daemon reachability. Use this to verify chain health before starting a workflow, or to debug why calls to other MCPs are failing. Without a chain parameter, returns an overview of all registered chains. With a chain parameter, returns detailed status for that specific chain.

NameTypeReqDescription
chainstringSpecific chain to check. Omit for an overview of all registered chains.

No output schema declared.

No examples provided.

stop ~136

Stop a running daemon. This shuts down the daemon process for the specified chain entirely — ALL connected clients, MCP servers, CLI users, and applications connected to this daemon will lose connectivity. This is not a per-session disconnect; it terminates the daemon. After stopping, the chain will no longer be reachable. Consider calling refresh_chains after stopping so other MCPs see the updated state.

NameTypeReqDescription
chainstringyesChain whose daemon to stop (e.g., "VRSC", "vrsctest")
reasonstringReason for stopping. Not sent to the daemon — recorded only in the local audit log for accountability.

No output schema declared.

No examples provided.

verusd ~187

Start a Verus daemon instance. This is a system command that spawns a new process — it is NOT an RPC call to an existing daemon. The daemon runs independently of this MCP server (detached process). After starting, the tool waits briefly and verifies the daemon launched successfully via getinfo. Call refresh_chains after a successful start so other MCPs can discover the new daemon.

NameTypeReqDescription
bootstrapbooleanStart with -bootstrap flag for faster initial sync. Only useful on first start or after a long time offline. Default: false.
chainstringChain to start. Omit for VRSC mainnet. For other chains, provide the chain name (e.g., "vrsctest"). Maps to the -chain= flag.
extra_argsarrayAdditional command-line arguments passed to verusd (e.g., ["-reindex"]).

No output schema declared.

No examples provided.