Gasfeepredictor MCP Server

Live Ethereum and L2 gas fees for AI agents: current gas, cheapest L2, ETH price, cost estimates.

Local serverstdio

What is the Gasfeepredictor MCP server?

Live Ethereum and L2 gas fees for AI agents: current gas, cheapest L2, ETH price, cost estimates. The gasfeepredictor mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 5 defined tools rather than through you.

What it actually does

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.

Its toolset

Everything the assistant can do here goes through one of these:

  • 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_price — Current ETH/USD and 24h change
  • best_time_to_transact — Send now or wait? Next cheaper window + expected savings
  • estimate_transaction_cost — USD cost of an ETH transfer / USDC transfer / Uniswap swap / NFT mint (or custom gas), per tier

Adding it to your client

The server ships on npm as gasfeepredictor-mcp, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

When to reach for it

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Gasfeepredictor's toolset — get_current_gas, get_l2_gas, get_eth_price and 2 more — is a fair guide to whether it matches your workflow. It is maintained by higherbeing; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Gasfeepredictor's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the gasfeepredictor mcp server does with a few real requests.

Available tools

ToolWhat it does
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.

How to install the Gasfeepredictor MCP server

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

Configuration as documented by the project. Restart the client after saving.

Example prompts to try

  • Use Gasfeepredictor to get current gas.
  • Use Gasfeepredictor to get l2 gas.
  • Use Gasfeepredictor to get eth price.

Frequently asked questions

It connects Gasfeepredictor to MCP-compatible AI assistants such as Claude and Cursor, exposing 5 tools (get_current_gas, get_l2_gas, get_eth_price, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Gasfeepredictor directly.