UNPKG

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.**

46 lines (45 loc) 1.15 kB
#!/usr/bin/env node // src/index.ts import { parseArgs } from "node:util"; import { init } from "./cli/init.js"; import { version } from "./cli/version.js"; import { printHelp } from "./cli/help.js"; import { main } from "./main.js"; process.on("uncaughtException", (error) => { console.error("❌ Uncaught exception:", error); }); process.on("unhandledRejection", (error) => { console.error("❌ Unhandled rejection:", error); }); let values; try { const args = parseArgs({ options: { init: { type: "boolean", short: "i" }, help: { type: "boolean", short: "h" }, version: { type: "boolean", short: "v" }, }, }); values = args.values; } catch (err) { console.error("❌ Unrecognized argument. For help, run `uniderp-mcp --help`."); process.exit(1); } if (values.help) { printHelp(); process.exit(0); } if (values.version) { console.log(version); process.exit(0); } if (values.init) { await init(); // run init.js logic } else { main().catch((error) => { console.error("❌ Fatal error in main():", error); process.exit(1); }); }