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

hashpilot

v0.1.0

Published

AI-powered MCP server for Hedera blockchain development - integrates with Claude Desktop, Cursor, Windsurf, and VS Code

Readme

HashPilot

npm version License Node.js

AI-powered MCP server for Hedera blockchain development

HashPilot is a Model Context Protocol (MCP) server that integrates with AI assistants like Claude Desktop, Cursor, Windsurf, and VS Code to provide a complete toolkit for Hedera blockchain development.

Quick Start

Install via npm

npm install -g hashpilot

Or use with npx (no install required)

npx hashpilot

Editor Configuration

HashPilot works with any MCP-compatible editor. Configure your editor to use HashPilot:

Claude Desktop

Config file location:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json

Configuration:

{
  "mcpServers": {
    "hashpilot": {
      "command": "npx",
      "args": ["-y", "hashpilot"],
      "env": {
        "HEDERA_NETWORK": "testnet",
        "HEDERA_OPERATOR_ID": "0.0.YOUR_ACCOUNT_ID",
        "HEDERA_OPERATOR_KEY": "YOUR_PRIVATE_KEY_HEX",
        "OPENAI_API_KEY": "sk-YOUR_OPENAI_KEY"
      }
    }
  }
}

Cursor

Config file location:

  • macOS: ~/.cursor/mcp.json
  • Windows: %USERPROFILE%\.cursor\mcp.json
  • Linux: ~/.cursor/mcp.json

Configuration:

{
  "mcpServers": {
    "hashpilot": {
      "command": "npx",
      "args": ["-y", "hashpilot"],
      "env": {
        "HEDERA_NETWORK": "testnet",
        "HEDERA_OPERATOR_ID": "0.0.YOUR_ACCOUNT_ID",
        "HEDERA_OPERATOR_KEY": "YOUR_PRIVATE_KEY_HEX",
        "OPENAI_API_KEY": "sk-YOUR_OPENAI_KEY"
      }
    }
  }
}

Windsurf

Config file location:

  • macOS: ~/.codeium/windsurf/mcp_config.json
  • Windows: %USERPROFILE%\.codeium\windsurf\mcp_config.json
  • Linux: ~/.codeium/windsurf/mcp_config.json

Configuration:

{
  "mcpServers": {
    "hashpilot": {
      "command": "npx",
      "args": ["-y", "hashpilot"],
      "env": {
        "HEDERA_NETWORK": "testnet",
        "HEDERA_OPERATOR_ID": "0.0.YOUR_ACCOUNT_ID",
        "HEDERA_OPERATOR_KEY": "YOUR_PRIVATE_KEY_HEX",
        "OPENAI_API_KEY": "sk-YOUR_OPENAI_KEY"
      }
    }
  }
}

VS Code (with MCP extension)

Install the MCP extension and add to your settings.json:

{
  "mcp.servers": {
    "hashpilot": {
      "command": "npx",
      "args": ["-y", "hashpilot"],
      "env": {
        "HEDERA_NETWORK": "testnet",
        "HEDERA_OPERATOR_ID": "0.0.YOUR_ACCOUNT_ID",
        "HEDERA_OPERATOR_KEY": "YOUR_PRIVATE_KEY_HEX",
        "OPENAI_API_KEY": "sk-YOUR_OPENAI_KEY"
      }
    }
  }
}

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | HEDERA_NETWORK | Yes | Network to use: testnet, mainnet, or previewnet | | HEDERA_OPERATOR_ID | Yes | Your Hedera account ID (e.g., 0.0.12345) | | HEDERA_OPERATOR_KEY | Yes | Your private key in hex format | | OPENAI_API_KEY | For RAG | Required for documentation search and code generation |

Features

HashPilot provides 30+ MCP tools covering the complete Hedera development workflow:

Account Management

  • Create new accounts with ECDSA keys
  • Query balances (HBAR and tokens)
  • Transfer HBAR between accounts
  • Get detailed account information

Token Operations (HTS)

  • Create fungible and non-fungible tokens
  • Mint, burn, and transfer tokens
  • Freeze/unfreeze accounts
  • Manage KYC compliance
  • Configure custom fees

Consensus Service (HCS)

  • Create and manage topics
  • Submit messages (auto-chunking for large messages)
  • Query message history
  • Real-time subscriptions

Smart Contracts

  • Deploy contracts via Hardhat or Foundry
  • Verify contracts on HashScan
  • Call read-only functions (free)
  • Execute state-changing transactions
  • Full deployment history tracking

JSON-RPC (EVM Compatibility)

  • 55+ JSON-RPC methods supported
  • eth_call, eth_sendRawTransaction, eth_getLogs
  • Contract deployment and interaction
  • Full EVM tooling compatibility

Stablecoin Studio

  • Create compliant stablecoins
  • Role-based access control
  • KYC/AML compliance features
  • Proof-of-Reserve support
  • Cash-in allowances

Development Tools

  • Hardhat integration (compile, test, deploy)
  • Foundry integration (forge, cast, anvil)
  • Error code explanations
  • Address book management
  • State backup/restore

RAG-Powered Documentation

HashPilot includes a powerful RAG (Retrieval-Augmented Generation) system with 10,000+ pre-indexed documents from the Hedera ecosystem:

docs_search

Semantic search across all Hedera documentation:

"Search for token creation examples in JavaScript"

docs_ask

Ask any question and get cited answers:

"How do I implement a multi-sig account on Hedera?"

code_generate

Generate SDK code from natural language:

"Generate code to create an NFT collection with royalties"

Indexed Sources:

  • Official Hedera Documentation
  • SDK References (JavaScript, Java, Go, Rust, Python)
  • Hedera Improvement Proposals (HIPs)
  • Tutorials and Examples
  • Smart Contract Patterns

Note: RAG features require an OpenAI API key for embeddings and completions.

Requirements

  • Node.js 18.0.0 or higher
  • Hedera Account - Get a free testnet account at portal.hedera.com
  • OpenAI API Key - Required for RAG features (documentation search, code generation)

Getting a Hedera Testnet Account

  1. Visit portal.hedera.com
  2. Create a free account
  3. Navigate to "Testnet" tab
  4. Copy your Account ID and Private Key (DER encoded)
  5. Convert DER to hex if needed, or use the raw hex key

Example Usage

Once configured, ask your AI assistant:

"Create a new Hedera account with 10 HBAR initial balance"

"Deploy this Solidity contract to testnet using Hardhat"

"Search the docs for HCS message chunking"

"Generate code to create a fungible token with 2 decimals"

"Explain the INSUFFICIENT_PAYER_BALANCE error"

Links

License

Apache-2.0

Contributing

Contributions are welcome! Please see our GitHub repository for guidelines.