hedera-dev_hts-mcp-server

hedera-dev_hts-mcp-server

3.2

If you are the rightful owner of hedera-dev_hts-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.

A Model Context Protocol (MCP) server for interacting with the Hedera network, providing tools for wallet creation, balance checking, transaction building, and sending signed transactions.

The Hedera MCP Server is a demonstration implementation designed to showcase how transaction construction and execution can be managed by an MCP server. This server facilitates interaction with the Hedera network by centralizing transaction logic, thereby reducing client-side complexity. The server constructs transactions, which clients then sign and submit back to the server for execution on the Hedera network. This architecture allows for a streamlined process where the client is only responsible for transaction verification. However, it is important to note that this implementation is not secure for production use due to several vulnerabilities, such as the transmission of private keys in response bodies and the lack of encryption for sensitive data. The server is built using Node.js and requires a Hedera account for operation, supporting both testnet and mainnet environments.

Features

  • Centralized transaction logic
  • Client-side transaction verification
  • Hedera wallet creation
  • Account balance checking
  • Transaction building and submission

Tools

  1. create-wallet

    Creates a new Hedera account with a minimal initial balance.

  2. check-balance

    Checks the balance of a Hedera account.

  3. build-transaction

    Builds a transfer transaction without signing.

  4. send-transaction

    Sends a signed transaction to the Hedera network.