zetrix-mcp-server
by Zetrix-Chain
Overview
The Zetrix MCP Server allows AI assistants, like Claude, to interact with the Zetrix blockchain using natural language, providing a suite of tools for account management, transaction processing, real-time monitoring, cryptography, and smart contract development and generation.
Installation
npx -y zetrix-mcp-serverEnvironment Variables
- ZETRIX_NETWORK
- ZETRIX_RPC_URL
- ZETRIX_WS_URL
Security Notes
The server's `zetrix_contract_init_dev_environment` tool utilizes `child_process.execSync` to run `npx -y create-zetrix-tool`. While the `contractName` input is sanitized, executing external CLI tools via `npx` introduces a supply chain risk. A compromised `create-zetrix-tool` package, even with valid input, could lead to arbitrary code execution on the user's system. Additionally, the `zetrix_contract_generate_advanced` tool writes LLM-generated code directly to the filesystem (`fs.writeFileSync`), which could pose a risk if malicious or vulnerable code is generated and later executed. The default WebSocket connections use `ws://` (unencrypted), which is less secure than `wss://` for sensitive data over untrusted networks.
Similar Servers
heurist-mesh-mcp-server
Provides AI models (like Claude) access to Web3 and blockchain tools via the Heurist Mesh API for tasks such as cryptocurrency data analysis, token security review, and social media intelligence.
UCAI
Generates Model Context Protocol (MCP) servers from smart contract ABIs, enabling AI agents to interact with blockchain protocols safely and efficiently, incorporating security scanning and contract explanations.
claude-faf-mcp
Optimizes AI understanding of software projects by providing persistent context, fixing context-drift, and enabling bi-directional synchronization between project metadata and AI documentation.
mcp-devtools-server
This MCP server standardizes development tool patterns and provides AI-powered integrations to enable Claude Code to generate code more efficiently, reduce errors, and improve autocorrection for various programming languages and workflows.