#!/usr/bin/env node /** * Hedera MCP Server * * Comprehensive Model Context Protocol coverage for Hedera (Hashgraph): * Account, Token (HTS), Consensus (HCS), Smart Contract (EVM), File, Schedule, * and Network services. * * Security posture (matches goat-network-mcp): BUILD-ONLY, never holds keys. * - Reads/queries hit the public Mirror Node REST API (no auth). * - Writes build + freeze + serialize an UNSIGNED transaction (base64). The * caller signs and submits with their own wallet/SDK/CLI. Nothing executes here. * * Environment: * HEDERA_NETWORK mainnet | testnet (default) | previewnet * HEDERA_OPERATOR_ID optional default payer/treasury ACCOUNT ID (not a key) * HEDERA_MIRROR_URL optional Mirror Node REST override */ export {};