← fuse.io

INDIVIDUAL MCP TOOL

fuse_smart_execute_batch

Submits a single ERC-4337 UserOperation that executes a sequence of contract calls atomically.

fuse.ionone authenticationAvailability not checked

Input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • No write-capable action terms were found; this is not proof that invocation has no side effects.

Parent endpoint

fuse.io

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.fuse-mcp-server]
url = "https://mcp.fuse.io/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "fuse-mcp-server": {
      "type": "http",
      "url": "https://mcp.fuse.io/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: fuse-mcp-server
Remote MCP URL: https://mcp.fuse.io/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "fuse-mcp-server": {
      "url": "https://mcp.fuse.io/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "fuse-mcp-server": {
      "type": "http",
      "url": "https://mcp.fuse.io/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "fuse-mcp-server",
  "transport": "streamable-http",
  "url": "https://mcp.fuse.io/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • fuse_get_balance — Returns the native FUSE balance for an address, or an ERC-20 token balance when `tokenAddress` is supplied.
  • fuse_get_transaction — Fetches a transaction by hash.
  • fuse_get_receipt — Fetches the receipt for a mined transaction (status, gasUsed, logs).
  • fuse_read_contract — Calls a view/pure function on a Fuse contract.
  • fuse_get_token_metadata — Reads name, symbol, decimals, and totalSupply for an ERC-20 token deployed on Fuse.
  • fuse_get_gas_price — Returns the current Fuse network gas price (in wei and gwei) along with EIP-1559 fee suggestions when available.
  • fuse_resolve_ens — Resolves an ENS name to its EVM address.
  • fuse_get_account_abstraction_info — Reads ERC-4337 state for a smart account on Fuse: deployment status, EntryPoint nonce, and the account's deposit balance at the EntryPoint.