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

lumoz-mcp-send

v1.0.22

Published

Lumoz MCP Server for checking chain info

Downloads

9

Readme

Lumoz MCP Server

A Model Context Protocol (MCP) server for interacting with the Lumoz blockchain, providing comprehensive blockchain information, token balances, and network statistics.

Features

  • 🔍 Token Balances

    • Query native MOZ token balances
    • Check esMOZ (ERC20) token balances
    • Real-time balance updates
    • Direct links to block explorer for detailed information
  • 📊 Verifier Information

    • Total staked licenses and esMOZ
    • Current APR and accumulated rewards
    • Top 10 nodes by esMOZ staking rewards
    • Top 10 nodes by license staking rewards
    • Detailed verifier statistics and rankings
  • 📈 Chain Statistics

    • Total blocks, addresses, and transactions
    • Average block time
    • Contract statistics (total and verified)
    • Token information
    • 24-hour transaction metrics
    • Gas fee statistics and trends
  • 🔌 Integration

    • Seamless MCP protocol support
    • Easy integration with AI tools
    • Simple API interface
    • Real-time data updates

Installation

Using npm

npm install lumoz-mcp

Using yarn

yarn add lumoz-mcp

Usage

As a CLI Tool

npx lumoz-mcp

As a Library

import { McpServer } from "lumoz-mcp";

// Create server instance
const server = new McpServer();

// Connect to transport
await server.connect(transport);

API Documentation

get_moz_balance

Get the native MOZ token balance for a given address.

Parameters

  • address: Lumoz address (string)

Return Value

  • MOZ token balance (18 decimal places)
  • Direct link to block explorer for detailed information

Example

const balance = await server.get_moz_balance("0x123...");
console.log(`Balance: ${balance} MOZ`);

get_esmoz_balance

Get the esMOZ (ERC20) token balance for a given address.

Parameters

  • address: Lumoz address (string)

Return Value

  • esMOZ token balance (18 decimal places)
  • Direct link to block explorer for detailed information

Example

const balance = await server.get_esmoz_balance("0x123...");
console.log(`esMOZ Balance: ${balance}`);

get_verifier_info

Get comprehensive information about Lumoz verifiers and staking statistics.

Return Value

  • Staking Overview

    • Total staked licenses
    • Total staked esMOZ
    • Total accumulated rewards
    • Current APR
  • Top Performers

    • Top 10 nodes by esMOZ staking rewards
      • Node name
      • Staked esMOZ amount
      • Staking reward rate
      • Node level
    • Top 10 nodes by license staking rewards
      • Node name
      • Staked licenses
      • Delegate reward rate
      • Node level

Example

const verifierInfo = await server.get_verifier_info();
console.log(verifierInfo);

get_chain_stats

Get detailed Lumoz chain statistics and metrics.

Return Value

  • Network Statistics

    • Total blocks
    • Total addresses
    • Total transactions
    • Average block time (in seconds)
  • Contract Information

    • Total contracts
    • Verified contracts
    • Total tokens
  • 24-Hour Metrics

    • Transaction count
    • Average transaction fee (in MOZ)
    • Total gas fees (in MOZ)

Example

const chainStats = await server.get_chain_stats();
console.log(chainStats);

Configuration

Add the following configuration to your Claude Desktop configuration file:

{
    "mcpServers": {
        "lumoz-mcp": {
            "command": "npx",
            "args": ["lumoz-mcp"]
        }
    }
}

Development

Prerequisites

  • Node.js
  • TypeScript
  • npm or yarn

Local Development

  1. Clone the repository
git clone https://github.com/your-org/lumoz-mcp.git
cd lumoz-mcp
  1. Install dependencies
npm install
  1. Build the project
npm run build
  1. Start development mode
npm run dev

Dependencies

  • @modelcontextprotocol/sdk
  • axios
  • ethers
  • viem
  • zod

License

ISC