fee_estimates
Pack: blockstream-info · Endpoint: https://gateway.pipeworx.io/blockstream-info/mcp
Recommended sat/vB by confirmation target.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
network | string | no |
Example call
Arguments
{
"network": "mainnet"
}
curl
curl -X POST https://gateway.pipeworx.io/blockstream-info/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"fee_estimates","arguments":{"network":"mainnet"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('fee_estimates', {
"network": "mainnet"
});
Response shape
Full JSON Schema
{
"type": "object",
"description": "Fee estimates by confirmation target (sat/vB)",
"additionalProperties": {
"type": "number"
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"blockstream-info": {
"url": "https://gateway.pipeworx.io/blockstream-info/mcp"
}
}
}
See Getting Started for client-specific install steps.