Universal Blockchain (expertvagabond) MCP Server

@expertvagabond/universal-blockchain-mcp npm v1.0.1

Published by @expertvagabond — no publish provenance, so origin is unverified, but the source is public: the repository link below is self-declared yet readable, so you can inspect the code before adopting it.

Universal Blockchain MCP server for cross-chain development with ZetaChain, Foundry, and multi-chain support. Supports both remote (demo) and local (full functionality) deployment.

Trust grade
A
92/100
Last scanned get badge →
Trust
A · 92/100
Adoption risk for you: the threat score, then adjusted down for blast radius, publisher verification and how much the scan could see. Deterministic; every point is auditable.
Capability
High
Blast radius if it went rogue — what the server’s tools could reach. Independent of trust.
Coverage
Source
How much the scan could actually inspect. Shallow coverage is stated, never hidden.
Share this Trust Score
𝕏 Share LinkedIn Reddit
A Why this grade threat 99 − adoption risk = 92/100

The grade answers one question — how safe is this server for you to adopt — so it is computed in two auditable stages. Nothing below is an opinion or an LLM's guess; every line is a real term the deterministic engine applied, and the same input always yields the same number.

1. Threat score — 100 − 1.2 = 99. What the published surface and source actually contain:

PointsWhat was foundCategory
−1.2 Package runs install-time scripts MTC-SUP-010 supply-chain

2. Client adoption risk — 99 − 7 = 92. Three small, subtract-only factors that reflect your risk in adopting it — a clean scan proves less on a powerful, unverified or barely-inspectable package, so the grade says so plainly:

PointsAdoption-risk factor
−6 capability blast radius (high) — client exposure if the model is manipulated
−1 publisher verification (public source) — no provenance, but the source is public and inspectable

Capability observations and info notes are shown under Findings but never scored. Open any row's finding below for the file, line and evidence behind a deduction.

Findings 11

high Shell/command execution in server code (dist/index.js)MTC-SRC-002

In the server's implementation (`dist/index.js:5`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: import { spawn } from 'child_process'; class ZetaChainMCPServer { server; testMode; constructor() {

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/index.js

high Shell/command execution in server code (dist/smithery.js)MTC-SRC-002

In the server's implementation (`dist/smithery.js:53`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: { execSync } = require('child_process'); execSync('zetachain --version', { stdio: 'ignore' }); c

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/smithery.js

high Shell/command execution in server code (src/index.ts)MTC-SRC-002

In the server's implementation (`src/index.ts:10`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: import { spawn } from 'child_process'; import { promisify } from 'util'; import { testModeResponses } from './test-mode

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server src/index.ts

high Shell/command execution in server code (src/smithery.ts)MTC-SRC-002

In the server's implementation (`src/smithery.ts:10`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: import { spawn } from 'child_process'; // Session configuration schema for Smithery (JSON Schema Draft 07) export cons

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server src/smithery.ts

medium Untrusted input can drive an external actionMTC-FLOW-005

Untrusted-input tools ([get_balances, get_fees]) co-exist with external-action tools ([withdraw_tokens, cross_chain_send, nft_mint]). A prompt injection could cause unwanted external actions, though no direct sensitive-data leak path was found.

Evidence: untrusted [get_balances, get_fees] → sinks [withdraw_tokens, cross_chain_send, nft_mint]

Fix: Require confirmation for state-changing/egress actions triggered after processing untrusted content.

Location: flow get_balances → withdraw_tokens

medium Hardcoded egress to an external endpoint (dist/index.js)MTC-SRC-003

In the server's implementation (`dist/index.js:176`): A hardcoded outbound call to a fixed external host inside server code is a classic exfiltration/telemetry channel — especially paired with reads of local data. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: const response = await fetch('https://zetachain-athens-evm.blockpi.network/v1/rpc/public', { method: 'P

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/index.js

medium Hardcoded egress to an external endpoint (src/index.ts)MTC-SRC-003

In the server's implementation (`src/index.ts:205`): A hardcoded outbound call to a fixed external host inside server code is a classic exfiltration/telemetry channel — especially paired with reads of local data. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: const response = await fetch('https://zetachain-athens-evm.blockpi.network/v1/rpc/public', { method: 'POST',

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server src/index.ts

medium Unconstrained URL/host parameter "metadata_uri" on "nft_mint"MTC-CAP-007

Tool "nft_mint" takes a URL/host parameter "metadata_uri" with no allowlist/pattern. An outbound-request tool with an unbounded destination enables SSRF and cloud-metadata access (e.g. 169.254.169.254).

Fix: Allowlist destinations or constrain the parameter; block private/link-local addresses server-side.

Location: tool nft_mint · inputSchema.properties.metadata_uri

low Shell/command execution in packaging/dev tooling (dist/__tests__/index.test.js)MTC-SRC-002

In a packaging/dev/install script (shipped, but not the server runtime) (`dist/__tests__/index.test.js:2`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: import { spawn } from 'child_process'; // Mock the child_process module jest.mock('child_process'); const mockSpawn = s

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server dist/__tests__/index.test.js

low Shell/command execution in packaging/dev tooling (src/__tests__/index.test.ts)MTC-SRC-002

In a packaging/dev/install script (shipped, but not the server runtime) (`src/__tests__/index.test.ts:2`): Spawning a shell/process is command-execution capability; with unsanitized tool input it is command injection / RCE. This is read from the code itself — not from the tool description — so a poisoned server cannot hide it behind honest-looking metadata.

Evidence: import { spawn } from 'child_process'; // Mock the child_process module jest.mock('child_process'); const mockSpawn =

Fix: Review this call path: confirm it never receives unsanitized tool input, constrain it, or remove it. Treat a server whose code reaches these sinks as high-capability regardless of what its tools claim.

Location: server src/__tests__/index.test.ts

low Package runs install-time scripts (postinstall)MTC-SUP-010

"@expertvagabond/universal-blockchain-mcp" executes postinstall script(s) at install time. An install hook runs at install time; most are routine build/setup, but review what it does before trusting it.

Evidence: npm run install-zetachain && npm run install-foundry

Fix: Review the scripts; install with --ignore-scripts where possible and vet what they do.

Location: package @expertvagabond/universal-blockchain-mcp

Tools 56

Each tool and what it can reach — statically extracted from the published source.

  • cross_chain_sendnetwork egress
  • get_balancesingests untrusted input
  • get_feesingests untrusted input
  • nft_mintnetwork egress
  • withdraw_tokensnetwork egress
  • anvil_revertno sensitive capability
  • anvil_snapshotno sensitive capability
  • anvil_startno sensitive capability
  • block_explorerno sensitive capability
  • bridge_statusno sensitive capability
Show 46 more tools ↓
  • call_contractno sensitive capability
  • cast_balanceno sensitive capability
  • cast_blockno sensitive capability
  • cast_callno sensitive capability
  • cast_gas_priceno sensitive capability
  • cast_nonceno sensitive capability
  • cast_sendno sensitive capability
  • cast_txno sensitive capability
  • check_foundryno sensitive capability
  • contract_compileno sensitive capability
  • contract_deployno sensitive capability
  • contract_interactno sensitive capability
  • create_accountno sensitive capability
  • create_projectno sensitive capability
  • cross_chain_statusno sensitive capability
  • defi_liquidity_addno sensitive capability
  • defi_swapno sensitive capability
  • defi_yield_farmno sensitive capability
  • forge_buildno sensitive capability
  • forge_createno sensitive capability
  • forge_testno sensitive capability
  • forge_verifyno sensitive capability
  • gas_optimizerno sensitive capability
  • gas_trackerno sensitive capability
  • get_network_infono sensitive capability
  • import_accountno sensitive capability
  • list_accountsno sensitive capability
  • list_chainsno sensitive capability
  • list_tokensno sensitive capability
  • multisig_createno sensitive capability
  • nft_metadatano sensitive capability
  • nft_transferno sensitive capability
  • portfolio_trackerno sensitive capability
  • query_cctxno sensitive capability
  • request_faucetno sensitive capability
  • security_auditno sensitive capability
  • show_accountno sensitive capability
  • transaction_historyno sensitive capability
  • wallet_backupno sensitive capability
  • wallet_exportno sensitive capability
  • withdraw_and_callno sensitive capability
  • zeta_governance_proposalsno sensitive capability
  • zeta_governance_voteno sensitive capability
  • zeta_staking_delegateno sensitive capability
  • zeta_staking_rewardsno sensitive capability
  • zeta_validator_createno sensitive capability

Toxic flows 1

Cross-tool combinations that form a data-exfiltration primitive (untrusted input → sensitive source → external sink).

What this scan could not see

Versions 1

Scan history per published version. The engine is deterministic — the same version always yields the same score, so a changed score means the package itself changed.

VersionScoreFindingsEngineScanned
v1.0.1 latest A 92/100 11 1.13.0 2026-09-07

Embed this score

Show this server's live Trust Score in your README, docs or website. The badge is served straight from the registry and updates automatically after every rescan — no API key needed. It links back to this page, so anyone who sees the grade can also read the findings behind it instead of taking a number on faith.

MCP Trust Score: A · 92/100
Markdown (GitHub README)
[![MCP Trust Score](https://mcptrustchecker.com/registry/expertvagabond-universal-blockchain-mcp/badge.svg)](https://mcptrustchecker.com/registry/expertvagabond-universal-blockchain-mcp)
HTML
<a href="https://mcptrustchecker.com/registry/expertvagabond-universal-blockchain-mcp"><img src="https://mcptrustchecker.com/registry/expertvagabond-universal-blockchain-mcp/badge.svg" alt="MCP Trust Score" height="20"></a>
Prefer shields.io styling? Point it at https://mcptrustchecker.com/registry/expertvagabond-universal-blockchain-mcp/badge.json via https://img.shields.io/endpoint?url=…

Verify this score yourself

The score above is reproducible: the same package version always yields the same result. Run it locally or over the free API — no account, no LLM, fully deterministic.

npx mcptrustchecker scan @expertvagabond/universal-blockchain-mcp --online

Use the free API → How scoring works

Other implementations of Universal Blockchain 1

Independent packages implementing the same tool, scanned with the same engine. Compare all 2 side by side →

More in Finance & Commerce