npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2025 – Pkg Stats / Ryan Hefner

hedera-mcp

v0.2.0

Published

MCP server implementation for the Hedera blockchain using the Hedera Agent Kit

Readme

Hedera MCP

NPM Version

Hedera MCP is an MCP server implementation for the Hedera blockchain, built using the Hedera Agent Kit. It allows AI models that support the Model Context Protocol (MCP) to interact with the Hedera network and you can then perform a wide range of blockchain operations without needing to write code or understand technical details.

Features

  • 15+ MCP tools covering account operations, token operations, and distribution.

  • Non-custodial setup with no private keys exposed on any server.

  • Supports MCP-compatible clients like Claude Desktop. Many more are being developed.

  • Will be more powerful with other MCP tools like the filesystem, github, this allows AI to access your directory and automate tasks both within and outside of Web3.

Using with Claude Desktop

  1. Install Claude Desktop if you haven't already
  2. Open Claude Desktop settings
  3. Add the Hedera MCP server to your configuration:
{
  "mcpServers": {
    "hedera": {
      "command": "npx",
      "args": [
        "-y",
        "hedera-mcp",
        "--hedera_account_id=0.0.XXXXX",
        "--hedera_private_key=YOUR_PRIVATE_KEY",
        "--hedera_network=testnet"
      ],
      "disabled": false
    }
  }
}

Replace 0.0.XXXXX with your actual Hedera account ID and YOUR_PRIVATE_KEY with your actual private key. You can use testnet or mainnet for the network parameter.

You can also run it standalone by:

npx hedera-mcp

Background

Most Web3 Agent Kits today are based on Langchain and require developers to create separate applications. However, AI models evolve quickly, and once a developer releases an app, the model often becomes outdated or obsolete, leading to applications reaching end-of-life within just a few months.

Model Context Protocol (MCP), introduced by Claude AI in late 2024, has quickly become popular today. It solves this issue by integrating directly with AI interfaces, allowing users to easily switch to the latest models and interact with Web3 through standardized tools.

Available Tools

The Hedera MCP server provides the following tools to Claude and other AI assistants:

  1. hedera_get_hbar_balance - Retrieves the HBAR balance for an account
  2. hedera_get_all_token_balances - Gets all token balances for an account
  3. hedera_get_hts_balance - Gets the balance of a specific token for an account
  4. hedera_get_token_holders - Retrieves holders of a specific token
  5. hedera_airdrop_token - Creates a token airdrop to multiple accounts
  6. hedera_associate_token - Associates a token with an account
  7. hedera_claim_airdrop - Claims tokens from an airdrop
  8. hedera_create_fungible_token - Creates a new fungible token
  9. hedera_create_non_fungible_token - Creates a new non-fungible token
  10. hedera_dissociate_token - Dissociates a token from an account
  11. hedera_get_pending_airdrop - Gets pending airdrops for an account
  12. hedera_mint_fungible_token - Mints additional fungible tokens
  13. hedera_mint_nft - Mints new non-fungible tokens
  14. hedera_reject_token - Rejects a token sent to an account
  15. hedera_transfer_native_hbar_token - Transfers HBAR to another account
  16. hedera_transfer_token - Transfers tokens to another account

Screenshots

Screenshot from 2025-04-27 22-59-42

Troubleshooting

If you encounter issues:

  • Verify your account ID and private key are correct
  • Check your account has sufficient HBAR balance
  • Ensure your network selection (testnet/mainnet) is correct
  • Restart Claude Desktop after changing MCP configurations
  • Check console output for detailed error messages

Deployment

TBD

License

This project is licensed under the MIT License.