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
18 lines (17 loc) • 840 B
JavaScript
import { registerAccountAnalysisTools } from "./accountAnalysis/index.js";
import { registerChainDataTools } from "./chainData/index.js";
import { registerContractInteractionTools } from "./contractInteraction/index.js";
import { registerCrossChainTools } from "./crossChain/index.js";
import { registerDevelopmentTools } from "./development/index.js";
import { registerBatchOperationsTools } from "./batchOperations/index.js";
import { registerStylusTools } from "./stylus/index.js";
export function registerAllTools(server) {
// Register all tool categories
registerAccountAnalysisTools(server);
registerChainDataTools(server);
registerContractInteractionTools(server);
registerCrossChainTools(server);
registerDevelopmentTools(server);
registerBatchOperationsTools(server);
registerStylusTools(server);
}