UNPKG

arbitrum-mcp-tools

Version:

A comprehensive collection of Model Context Protocol (MCP) tools for interacting with the Arbitrum blockchain. Enables AI assistants like Claude, Cursor, Windsurf, VS Code, Gemini CLI, and OpenAI Codex to perform blockchain operations including account an

10 lines (9 loc) 306 B
#!/usr/bin/env node import { startServer, alchemy } from "./server.js"; // Re-export alchemy for backward compatibility export { alchemy }; // Start the server when this file is executed directly startServer().catch((error) => { console.error("Fatal error in main():", error); process.exit(1); });