Full coverage of every core Hedera service — Account, Token (HTS), Consensus (HCS),
Smart Contract (EVM), File, Schedule — plus a 14-tool Mirror Node analytics layer, exposed
to any AI agent over MCP. Reads hit the public Mirror Node (no auth). Writes
return an unsigned, frozen transaction you sign with your own wallet. The server
never sees a private key and never executes anything.
Eight runnable scenarios — each a single command that builds via the MCP, executes on
testnet, and self-verifies via Mirror Node, including the negative assertions: the
compliant token proves the network rejects a pre-KYC transfer; the DAO payout proves
it won't move on a single signature. Source in
examples/scenarios.
Notary
Hash a document → consensus-timestamp it → tampering becomes detectable.
HCSnode examples/scenarios/notary.mjs
AI audit trail
An agent logs every action to HCS, then replays its own verifiable history.
HCS + AInode examples/scenarios/audit-trail.mjs
Agent payments
Agent A pays Agent B in service-credit tokens per task, with a commerce ledger.
agent → hedera_create_fungible_token
→ server builds + freezes TokenCreateTransaction
→ returns base64 (unsigned)
→ you sign in HashPack / SDK / CLI → submit to Hedera
Inspect anything before signing with hedera_decode_transaction.
Verified end-to-end on testnet: token create+mint, NFT create+mint, topic, file,
scheduled transfer — all submitted from unsigned server output and confirmed via Mirror Node.