Hedera MCP Server provides a lightweight blockchain interaction toolkit for creating Hedera wallets, checking account balances, building transactions, and sending signed transactions. Built with TypeScript and the Hedera SDK, it offers a streamlined interface for developers to perform core blockchain operations through a Model Context Protocol server. The implementation is particularly useful for developers building decentralized applications or testing Hedera network interactions without complex blockchain management overhead.
No reviews yet. Be the first to review!
Sign in to join the conversation
Creates a new Hedera account with a minimal initial balance. No input parameters required. Returns account ID, public key, and private key.
Checks the balance of a Hedera account. Input: accountId (string). Returns the account balance in tinybars.
Builds a transfer transaction (without signing). Inputs: senderAccountId (string), recipientAccountId (string), amount (number, in tinybars). Returns a base64-encoded transaction.
Sends a signed transaction to the Hedera network. Input: signedTransaction (string, base64-encoded). Returns transaction status and ID.