← nodeflare.app
INDIVIDUAL MCP TOOL
eth_call
Execute a read-only contract call (eth_call) and return the raw result.
LIVE ENDPOINT
https://mcp.nodeflare.app/mcp
Connect to this endpoint to inspect the live schema for eth_call and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Potential side effects detected · medium confidence · heuristic, not a guarantee.
- A tool name or description suggests code or command execution.
Parent server
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.nodeflare]
url = "https://mcp.nodeflare.app/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"nodeflare": {
"type": "http",
"url": "https://mcp.nodeflare.app/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: nodeflare
Remote MCP URL: https://mcp.nodeflare.app/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": {
"nodeflare": {
"url": "https://mcp.nodeflare.app/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"nodeflare": {
"type": "http",
"url": "https://mcp.nodeflare.app/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "nodeflare",
"transport": "streamable-http",
"url": "https://mcp.nodeflare.app/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
list_chains— List the EVM chains NodeFlare serves, with chain IDs and endpoint URLs.get_block_number— Get the latest block number on a chain (decimal and hex).get_balance— Get the native-token balance of an address — raw wei plus a human-readable amount in the chain's currency.get_gas_price— Get the current gas price on a chain (wei + gwei).get_transaction— Get a transaction by its hash (from, to, value, input, block, gas).get_transaction_receipt— Get the receipt of a transaction by hash (status, logs, gas used).get_block— Get a block by number or tag ('latest', 'finalized', or a hex number).get_logs— Fetch contract event logs (eth_getLogs).