drio
Open app

Neo N3 MCP Server

Source

An MCP server for interacting with the Neo N3 blockchain.

Catalog onlyCatalog onlySTDIO

Overview

Neo N3 MCP Server is a server designed for seamless interaction with the Neo N3 blockchain, enabling users to manage wallets, transfer assets, and invoke smart contracts.

To use the Neo N3 MCP Server, you can integrate it into your Claude MCP configuration using either NPM or Docker. Simply add the server configuration to your claude_desktop_config.json file.

  • Dual Network Support for mainnet and testnet - Blockchain information retrieval - Detailed block and transaction data access - Secure account management and wallet operations - Smart contract deployment and invocation - Transaction monitoring and gas fee estimation - Docker support for easy deployment
  1. Managing cryptocurrency wallets securely.
  2. Transferring assets like NEO and GAS between addresses.
  3. Interacting with smart contracts on the Neo N3 blockchain.
  4. Monitoring transaction statuses and network health.

Add to your AI client

Use these steps to connect Neo N3 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": {
    "neo-n3-mcp-r3e-network": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-neo-n3-mcp-r3e-network"
      ]
    }
  }
}

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": {
    "neo-n3-mcp-r3e-network": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-neo-n3-mcp-r3e-network"
      ]
    }
  }
}

Claude Code

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

.mcp.json (project root)

{
  "mcpServers": {
    "neo-n3-mcp-r3e-network": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-neo-n3-mcp-r3e-network"
      ]
    }
  }
}

VS Code (Copilot)

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

.vscode/mcp.json

{
  "servers": {
    "neo-n3-mcp-r3e-network": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-neo-n3-mcp-r3e-network"
      ]
    }
  }
}

Windsurf

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

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "neo-n3-mcp-r3e-network": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-neo-n3-mcp-r3e-network"
      ]
    }
  }
}

Cline

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

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "neo-n3-mcp-r3e-network": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-neo-n3-mcp-r3e-network"
      ]
    }
  }
}