gas_fees

Pack: gemini-crypto · Endpoint: https://gateway.pipeworx.io/gemini-crypto/mcp

Fetch estimated on-chain gas fees from Gemini for a symbol (e.g. ethusd): fee amount and unit. Use before estimating ETH withdrawal costs.

Parameters

NameTypeRequiredDescription
symbolstringyes

Example call

Arguments

{
  "symbol": "ethusd"
}

curl

curl -X POST https://gateway.pipeworx.io/gemini-crypto/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"gas_fees","arguments":{"symbol":"ethusd"}}}'

TypeScript (@pipeworx/sdk)

import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();

const result = await pipeworx.call('gas_fees', {
  "symbol": "ethusd"
});

Response shape

FieldTypeDescription
feestringEstimated gas fee
surgeGasPricestringSurge gas price
Full JSON Schema
{
  "type": "object",
  "properties": {
    "fee": {
      "type": "string",
      "description": "Estimated gas fee"
    },
    "surgeGasPrice": {
      "type": "string",
      "description": "Surge gas price"
    }
  }
}

Connect

Add this to your MCP client config, or use one-click install buttons:

{
  "mcpServers": {
    "gemini-crypto": {
      "url": "https://gateway.pipeworx.io/gemini-crypto/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026