recommended_fees

Pack: mempool-space · Endpoint: https://gateway.pipeworx.io/mempool-space/mcp

Current sat/vB fee recommendations.

Parameters

NameTypeRequiredDescription
networkstringno

Example call

Arguments

{
  "network": "mainnet"
}

curl

curl -X POST https://gateway.pipeworx.io/mempool-space/mcp \
  -H 'Content-Type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"recommended_fees","arguments":{"network":"mainnet"}}}'

TypeScript (@pipeworx/sdk)

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

const result = await pipeworx.call('recommended_fees', {
  "network": "mainnet"
});

More examples

{
  "network": "testnet"
}

Response shape

FieldTypeDescription
fastestFeenumberFastest fee in sat/vB
halfHourFeenumberHalf-hour fee in sat/vB
hourFeenumberOne-hour fee in sat/vB
economyFeenumberEconomy fee in sat/vB
minimumFeenumberMinimum fee in sat/vB
Full JSON Schema
{
  "type": "object",
  "properties": {
    "fastestFee": {
      "type": "number",
      "description": "Fastest fee in sat/vB"
    },
    "halfHourFee": {
      "type": "number",
      "description": "Half-hour fee in sat/vB"
    },
    "hourFee": {
      "type": "number",
      "description": "One-hour fee in sat/vB"
    },
    "economyFee": {
      "type": "number",
      "description": "Economy fee in sat/vB"
    },
    "minimumFee": {
      "type": "number",
      "description": "Minimum fee in sat/vB"
    }
  }
}

Connect

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

{
  "mcpServers": {
    "mempool-space": {
      "url": "https://gateway.pipeworx.io/mempool-space/mcp"
    }
  }
}

See Getting Started for client-specific install steps.

Regenerated from source · build July 6, 2026