universal-blockchain-mcp
npm
v1.0.2
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.
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:
| Points | What was found | Category |
|---|---|---|
| −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:
| Points | Adoption-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.
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
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
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
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
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
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
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
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
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
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
"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 universal-blockchain-mcp
Each tool and what it can reach — statically extracted from the published source.
cross_chain_sendnetwork egressget_balancesingests untrusted inputget_feesingests untrusted inputnft_mintnetwork egresswithdraw_tokensnetwork egressanvil_revertno sensitive capabilityanvil_snapshotno sensitive capabilityanvil_startno sensitive capabilityblock_explorerno sensitive capabilitybridge_statusno sensitive capabilitycall_contractno sensitive capabilitycast_balanceno sensitive capabilitycast_blockno sensitive capabilitycast_callno sensitive capabilitycast_gas_priceno sensitive capabilitycast_nonceno sensitive capabilitycast_sendno sensitive capabilitycast_txno sensitive capabilitycheck_foundryno sensitive capabilitycontract_compileno sensitive capabilitycontract_deployno sensitive capabilitycontract_interactno sensitive capabilitycreate_accountno sensitive capabilitycreate_projectno sensitive capabilitycross_chain_statusno sensitive capabilitydefi_liquidity_addno sensitive capabilitydefi_swapno sensitive capabilitydefi_yield_farmno sensitive capabilityforge_buildno sensitive capabilityforge_createno sensitive capabilityforge_testno sensitive capabilityforge_verifyno sensitive capabilitygas_optimizerno sensitive capabilitygas_trackerno sensitive capabilityget_network_infono sensitive capabilityimport_accountno sensitive capabilitylist_accountsno sensitive capabilitylist_chainsno sensitive capabilitylist_tokensno sensitive capabilitymultisig_createno sensitive capabilitynft_metadatano sensitive capabilitynft_transferno sensitive capabilityportfolio_trackerno sensitive capabilityquery_cctxno sensitive capabilityrequest_faucetno sensitive capabilitysecurity_auditno sensitive capabilityshow_accountno sensitive capabilitytransaction_historyno sensitive capabilitywallet_backupno sensitive capabilitywallet_exportno sensitive capabilitywithdraw_and_callno sensitive capabilityzeta_governance_proposalsno sensitive capabilityzeta_governance_voteno sensitive capabilityzeta_staking_delegateno sensitive capabilityzeta_staking_rewardsno sensitive capabilityzeta_validator_createno sensitive capabilityCross-tool combinations that form a data-exfiltration primitive (untrusted input → sensitive source → external sink).
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.
| Version | Score | Findings | Engine | Scanned |
|---|---|---|---|---|
v1.0.2 latest |
A 92/100 | 11 | 1.13.0 | 2026-09-07 |
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.
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 universal-blockchain-mcp --online
Independent packages implementing the same tool, scanned with the same engine. Compare all 2 side by side →
<img src="./public/logo.png" alt="1Money Logo" width="200"/>
Signed verification attestations for agent decisions: business, price, freshness, claim checks.
Actual Budget MCP server exposing API functionality
MCP server for Actual Budget - query and manage your personal finances through Claude
The Adyen Model Context Protocol server allows you to integrate with Adyen APIs through LLMs function calling utilizing various Clients. It currently supports the following tools:
Trusted agent-commerce hub: discover, trust-check, and route x402 payments with failover.