Hedera MCP Server
@hedera-dev
关于 Hedera MCP Server
暂无概览
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"hts-mcp-server": {
"command": "node",
"args": [
"test-client.js"
]
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is Hedera MCP Server?
A Model Context Protocol (MCP) server for interacting with the Hedera network. It provides tools for creating Hedera wallets, checking account balances, building transactions, and sending signed transactions, and is intended as a demo implementation – not for production use.
How to use Hedera MCP Server?
Clone the repository, install dependencies (npm install), create a .env file with your Hedera operator credentials and network choice (testnet or mainnet), then build (npm run build) and start the server (npm start). A test client (node test-client.js) demonstrates the complete end-to-end flow.
Key features of Hedera MCP Server
- Creates new Hedera accounts with a minimal initial balance
- Checks account balances in tinybars
- Builds unsigned transfer transactions
- Sends signed transactions to the Hedera network
- Uses Model Context Protocol for AI-agent integration
- Architecture keeps transaction construction server-side
Use cases of Hedera MCP Server
- AI assistants that autonomously create and manage Hedera wallets
- Automated testnet faucets that check balances and dispense funds
- Demonstration of centralised transaction logic with client-side signing
- Educational tool for learning the Hedera transaction lifecycle
FAQ from Hedera MCP Server
Is this server safe to use in production?
No. The README explicitly warns that this is a demo implementation with several security vulnerabilities, including sending private keys in response bodies and lacking encryption or transaction verification.
What are the runtime requirements?
Node.js version 18 or higher and npm or yarn. You also need a Hedera account (testnet or mainnet) with its operator ID and private key.
How do I configure the server?
Create a .env file with HEDERA_OPERATOR_ID, HEDERA_OPERATOR_KEY, and HEDERA_NETWORK. An optional PORT defaults to 3000.
What tools does the server expose?
Four MCP tools: create-wallet (no input), check-balance (accountId), build-transaction (sender, recipient, amount), and send-transaction (signedTransaction base64).
How does the transaction lifecycle work?
The server builds a transaction, the client signs it using the Hedera SDK, and the server submits the signed transaction to the Hedera network. The test client demonstrates this full flow.
其他 分类下的更多 MCP 服务器
MCP Registry
modelcontextprotocolA community driven registry service for Model Context Protocol (MCP) servers.
🚀 Model Context Protocol (MCP) Curriculum for Beginners
microsoftThis open-source curriculum introduces the fundamentals of Model Context Protocol (MCP) through real-world, cross-language examples in .NET, Java, TypeScript, JavaScript, Rust and Python. Designed for developers, it focuses on practical techniques for building modular, scalable,
IDA Pro MCP
mrexodiaAI-powered reverse engineering assistant that bridges IDA Pro with language models through MCP.
Mcp
browsermcpBrowser MCP is a Model Context Provider (MCP) server that allows AI applications to control your browser
ACI: Open-Source Infra to Power Unified MCP Servers
aipotheosis-labsACI.dev is the open source tool-calling platform that hooks up 600+ tools into any agentic IDE or custom AI agent through direct function calling or a unified MCP server. The birthplace of VibeOps.
评论