recommended_fees
Pack: mempool-space · Endpoint: https://gateway.pipeworx.io/mempool-space/mcp
Current sat/vB fee recommendations.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
network | string | no |
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
| Field | Type | Description |
|---|---|---|
fastestFee | number | Fastest fee in sat/vB |
halfHourFee | number | Half-hour fee in sat/vB |
hourFee | number | One-hour fee in sat/vB |
economyFee | number | Economy fee in sat/vB |
minimumFee | number | Minimum 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.