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 🙏

© 2026 – Pkg Stats / Ryan Hefner

hellomoon-mcp-server

v1.0.0

Published

A Model Context Protocol server that provides access to HelloMoon's documentation and API information

Downloads

4

Readme

HelloMoon Documentation MCP Server

A Model Context Protocol (MCP) server that provides access to HelloMoon's documentation and API information. This server scrapes and parses HelloMoon's official documentation to answer questions about their Solana data streaming platform.

Features

  • 📚 Documentation Access: Fetch content from HelloMoon's official documentation
  • 🔍 Smart Search: Search across documentation for specific topics
  • 📊 Datastream Info: Get detailed information about available datastream types
  • 🚀 Setup Guides: Access quickstart and setup instructions
  • 💾 Caching: Built-in caching to reduce API calls and improve performance

Available Tools

Core Tools

  • search_documentation - Search HelloMoon documentation for specific topics
  • get_datastream_info - Get detailed information about a specific datastream type
  • list_available_datastreams - List all available HelloMoon datastream types
  • get_api_endpoints - Get information about HelloMoon API endpoints
  • get_setup_instructions - Get setup and quickstart instructions
  • answer_question - Answer questions about HelloMoon based on documentation

Available Resources

  • hellomoon-docs://quickstart - Stream Builder Quickstart documentation
  • hellomoon-docs://datastreams/overview - Overview of all available datastreams
  • hellomoon-docs://api/reference - HelloMoon API reference documentation
  • hellomoon-docs://page/{slug} - Access any documentation page by slug
  • hellomoon-docs://datastream/{type} - Documentation for specific datastream types

Installation

Prerequisites

  • Node.js 18+ and npm
  • MCP-compatible client (like Cline/Claude Dev)

Quick Install

Option 1: NPM Package (Recommended)

npx hellomoon-mcp-server

Option 2: Local Installation

  1. Clone this repository:
git clone https://github.com/YOUR_USERNAME/hellomoon-mcp-server.git
cd hellomoon-mcp-server
  1. Install dependencies:
npm install
  1. Build the server:
npm run build

Configuration

For Cline/Claude Dev

Add to your MCP settings file (cline_mcp_settings.json):

{
  "mcpServers": {
    "hellomoon-docs": {
      "command": "npx",
      "args": ["hellomoon-mcp-server"],
      "disabled": false,
      "autoApprove": []
    }
  }
}

For Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "hellomoon-docs": {
      "command": "npx",
      "args": ["hellomoon-mcp-server"]
    }
  }
}

Local Development

If you've cloned locally, use the full path:

{
  "mcpServers": {
    "hellomoon-docs": {
      "command": "node",
      "args": ["/path/to/hellomoon-mcp-server/build/index.js"],
      "disabled": false,
      "autoApprove": []
    }
  }
}

Usage Examples

Search Documentation

// Search for token price information
{
  "tool": "search_documentation",
  "arguments": {
    "query": "token price",
    "section": "datastreams"
  }
}

Get Datastream Information

// Get details about token price datastreams
{
  "tool": "get_datastream_info",
  "arguments": {
    "streamType": "token-price"
  }
}

List Available Datastreams

// Get all available datastream types
{
  "tool": "list_available_datastreams",
  "arguments": {}
}

Get Setup Instructions

// Get stream builder setup instructions
{
  "tool": "get_setup_instructions",
  "arguments": {
    "type": "stream-builder"
  }
}

Supported Datastream Types

  • token-price - Token price changes and monitoring
  • balance-change - Account balance changes
  • token-swap - Token swap events
  • token-transfer - Token transfer events
  • nft-secondary-market-actions - NFT secondary market activities
  • nft-collection-listing-stats - NFT collection floor price and listing stats
  • lp-balance-changes - Liquidity pool balance changes
  • lp-creations - Liquidity pool creation events
  • lp-deposits-withdrawals - LP deposit and withdrawal events
  • unparsed-transactions - Raw unparsed transaction data
  • parsed-account-updates - Parsed account update events
  • unparsed-account-updates - Raw account update events

Development

Setup

git clone https://github.com/YOUR_USERNAME/hellomoon-mcp-server.git
cd hellomoon-mcp-server
npm install

Build

npm run build

Watch Mode

npm run watch

Testing

Test the server locally:

npm run build
node build/index.js

Contributing

  1. Fork the repository
  2. Create a feature branch: git checkout -b feature-name
  3. Make your changes
  4. Run tests: npm test
  5. Commit your changes: git commit -am 'Add feature'
  6. Push to the branch: git push origin feature-name
  7. Submit a pull request

License

MIT License - see LICENSE file for details.

Support

Disclaimer

This is an unofficial MCP server that scrapes HelloMoon's public documentation. It is not affiliated with or endorsed by HelloMoon. For official API access and support, please visit HelloMoon's official website.