drio
Open app

Arbitrum MCP Server

Source

A Model Context Protocol (MCP) server that provides real-time Arbitrum blockchain data analysis using the Arbiscan API and Claude AI.

Catalog onlyCatalog onlySTDIO

Overview

Arbitrum MCP Server is a Model Context Protocol (MCP) server that provides real-time analysis of the Arbitrum blockchain data using the Arbiscan API and Claude AI.

To use the Arbitrum MCP Server, install the necessary dependencies, set up your API keys in a .env file, and run the server using the command npx tsx arbitrum-mcp.ts. You can then use the getArbitrumData tool to query blockchain data.

  • Real-time Arbitrum blockchain data fetching - Latest block information - Transaction analysis - Account balance checking - Network statistics - AI-powered data interpretation using Claude
  1. Fetching the latest block information on the Arbitrum network.
  2. Analyzing recent transactions for specific addresses.
  3. Checking account balances on the Arbitrum blockchain.
  4. Gathering network statistics for research purposes.

Add to your AI client

Use these steps to connect Arbitrum MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "arbitrum-mcp-server-0xrecruiter": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-arbitrum-mcp-server-0xrecruiter"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "arbitrum-mcp-server-0xrecruiter": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-arbitrum-mcp-server-0xrecruiter"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "arbitrum-mcp-server-0xrecruiter": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-arbitrum-mcp-server-0xrecruiter"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "arbitrum-mcp-server-0xrecruiter": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-arbitrum-mcp-server-0xrecruiter"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "arbitrum-mcp-server-0xrecruiter": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-arbitrum-mcp-server-0xrecruiter"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "arbitrum-mcp-server-0xrecruiter": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-arbitrum-mcp-server-0xrecruiter"
      ]
    }
  }
}

FAQ

What kind of data can I fetch using this server?

You can fetch real-time data about blocks, transactions, account balances, and network statistics.

Do I need to pay for using the Arbitrum MCP Server?

No, the server is free to use, but you need valid API keys for Arbiscan and Claude.

Is there any support for additional queries?

Yes, you can customize your queries by providing specific prompts and addresses.