/** * Mempool Watch tools * * These tools provide read-only Bitcoin mempool monitoring: * - get_btc_mempool_info: Current mempool statistics (tx count, vsize, fees) * - get_btc_transaction_status: Confirmation status and details for a txid * - get_btc_address_txs: Recent transaction history for a Bitcoin address * * Data is fetched from the public mempool.space API (no authentication required). */ import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js"; export declare function registerMempoolTools(server: McpServer): void; //# sourceMappingURL=mempool.tools.d.ts.map