UNPKG

infura-mcp-server

Version:

Model Context Protocol (MCP) server providing comprehensive read-only Ethereum blockchain access through Infura's infrastructure. Connect Claude Desktop, VS Code, and Cursor to 29 secure Ethereum JSON-RPC tools across 30+ networks including Ethereum, Poly

10 lines (6 loc) 212 B
import { Command } from "commander"; import { registerToolsCommand } from "./commands/tools.js"; const program = new Command(); // Register commands registerToolsCommand(program); program.parse(process.argv);