uniderp-mcp
Version:
> A plug-and-play MCP tool server to **send ETH**, **transfer ERC-20 tokens**, **deploy tokens**, and **interact with smart contracts** on the **UNICHAIN** — built for **Claude Desktop**, **AI agents**, and **developers.**
14 lines (13 loc) • 389 B
JavaScript
import { execSync } from "child_process";
import path from "path";
import { __dirname } from "../lib/storage.js";
export async function init() {
const initPath = path.resolve(__dirname, "../init.js");
try {
execSync(`node "${initPath}"`, { stdio: "inherit" });
}
catch (err) {
console.error("❌ Failed to run init:", err);
process.exit(1);
}
}