🎩 You're Invited:Meet the Socket team at Black Hat in Las Vegas, August 3-6.RSVP
Sign In

gasfeepredictor-mcp

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

gasfeepredictor-mcp

MCP server exposing live Ethereum + L2 gas fee data from Gas Fee Predictor (gasfeepredictor.com) to AI agents — Claude Desktop, OpenClaw, Cursor, Cline, and any MCP client.

latest
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

Gas Fee Predictor — MCP Server

Live Ethereum + Layer-2 gas-fee data for AI agents, via the Model Context Protocol. Works with Claude Desktop, OpenClaw, Cursor, Cline, and any other MCP client.

It's a thin, read-only wrapper over the free public API at https://api.gasfeepredictor.com (no key, no auth). Every answer includes a citation back to gasfeepredictor.com.

Tools

ToolWhat it answers
get_current_gas"What's the Ethereum gas fee right now?" — low/avg/high Gwei, ETH price, send-now-vs-wait.
get_l2_gas"Cheapest L2 right now?" — live Arbitrum / Base / Optimism / Polygon fees.
get_eth_priceCurrent ETH/USD and 24h change.
best_time_to_transactSend now or wait? Next cheaper window + expected savings.
estimate_transaction_costUSD cost of an ETH transfer / USDC transfer / Uniswap swap / NFT mint (or custom gas), per tier.

Install

With npm (once published):

npx gasfeepredictor-mcp

Or from source:

git clone https://github.com/higherbeing/gasfeepredictor-mcp
cd gasfeepredictor-mcp
npm install
npm start

Requires Node ≥ 18.

Configure your client

Claude Desktop

Add to claude_desktop_config.json (macOS: ~/Library/Application Support/Claude/claude_desktop_config.json):

{
  "mcpServers": {
    "gasfeepredictor": {
      "command": "npx",
      "args": ["-y", "gasfeepredictor-mcp"]
    }
  }
}

(Or use "command": "node", "args": ["/absolute/path/to/gasfeepredictor-mcp/index.mjs"] to run from source.)

Restart Claude Desktop, then ask: "What's the Ethereum gas fee right now, and is it cheaper on an L2?"

OpenClaw / Cursor / Cline

Any MCP-capable client uses the same shape — register a stdio server with command: npx, args: ["-y", "gasfeepredictor-mcp"] (or node + the path to index.mjs) in that client's MCP servers config.

Config

Env varDefaultPurpose
GASFEE_API_BASEhttps://api.gasfeepredictor.comOverride the API base.

Notes

  • Read-only and unauthenticated — it only reads public gas data.
  • Data refreshes ~every 30–60s upstream.
  • MIT licensed.

Keywords

mcp

FAQs

Package last updated on 12 Jun 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts