infura-mcp-server
Version:
Model Context Protocol (MCP) server providing comprehensive read-only Ethereum blockchain access through Infura's infrastructure. Connect Claude Desktop, VS Code, and Cursor to 29 secure Ethereum JSON-RPC tools across 30+ networks including Ethereum, Poly
51 lines (48 loc) • 1.59 kB
JavaScript
import { callInfura } from "../lib/infura-client.js";
/**
* Function to get the balance of an Ethereum account.
*
* @param {Object} args - Arguments for the balance query.
* @param {string} args.address - The Ethereum address to check the balance for.
* @param {string} args.tag - The block parameter to use (e.g., "latest", "earliest", "pending").
* @param {string} [args.network="mainnet"] The network to query.
* @returns {Promise<Object>} - The balance of the specified address in wei.
*/
const executeFunction = async ({ address, tag, network = "mainnet" }) => {
return callInfura("eth_getBalance", [address, tag], network);
};
/**
* Tool configuration for getting Ethereum account balance.
* @type {Object}
*/
const apiTool = {
function: executeFunction,
definition: {
type: "function",
function: {
name: "eth_getBalance",
description: "Get the balance of an Ethereum account on a specified network.",
parameters: {
type: "object",
properties: {
address: {
type: "string",
description: "The Ethereum address to check the balance for.",
},
tag: {
type: "string",
enum: ["latest", "earliest", "pending"],
description: "The block parameter to use.",
},
network: {
type: "string",
description: "The Ethereum network to query, e.g., 'mainnet' or 'sepolia'.",
default: "mainnet",
},
},
required: ["address", "tag"],
},
},
},
};
export { apiTool };