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

@dutch.casa/mete-rs

v0.1.2

Published

Structural metrics engine for code quality analysis

Readme


What is mete?

mete analyzes your codebase and reports structural quality metrics:

  • Maintainability Index (MI) - Overall code health score (0-100)
  • Cyclomatic Complexity (CC) - Number of independent paths through code
  • Cognitive Complexity - How hard code is to understand
  • Nesting Depth - Maximum control structure depth
  • Code Duplication - Repeated code blocks across files
  • Structural Entropy - Complexity distribution via Shannon entropy

Supports: Rust, TypeScript, JavaScript, Python, Go, Java, C#, C++, Elixir


Install as MCP Server

mete works as an MCP (Model Context Protocol) server, giving AI assistants direct access to code quality analysis.

Claude Code

claude mcp add mete -- mete mcp

Cursor

Or manually add to ~/.cursor/mcp.json:

{
  "mcpServers": {
    "mete": {
      "command": "mete",
      "args": ["mcp"]
    }
  }
}

VS Code

Add to your VS Code MCP settings:

{
  "mcp": {
    "servers": {
      "mete": {
        "command": "mete",
        "args": ["mcp"]
      }
    }
  }
}

OpenCode

Add to ~/.config/opencode/config.json:

{
  "mcp": {
    "mete": {
      "command": "mete",
      "args": ["mcp"]
    }
  }
}

MCP Tools Available

| Tool | Description | |------|-------------| | analyze | File/directory quality metrics (MI, CC, cognitive complexity, depth) | | targets | AI-friendly refactoring suggestions sorted by priority | | functions | Function-level metrics with filtering by complexity/size/depth | | duplicates | Detect duplicate code blocks (exact and cross-file similar) | | entropy | Measure structural complexity distribution |


Installation

From crates.io (Rust)

cargo install mete --features mcp

From npm (Node.js)

npm install -g @dutch.casa/mete-rs

From source

git clone https://github.com/dutch-casa/mete.rs
cd mete.rs
cargo install --path . --features mcp

CLI Usage

Analyze a file or directory

mete analyze src/
mete analyze src/main.rs

Find refactoring targets (AI-friendly)

mete targets src/ --limit 10

Function-level metrics

mete functions src/ --complex    # Show only complex functions
mete functions src/ --large      # Show only large functions (>50 LOC)
mete functions src/ --deep       # Show only deeply nested functions

Find duplicate code

mete duplicates src/
mete duplicates src/ --cross-file --threshold 0.8

Measure structural entropy

mete entropy src/

Explain metrics

mete explain mi
mete explain cc
mete explain depth

Metrics

Maintainability Index (MI)

Measures code maintainability on a scale of 0-100. Higher is better.

| Range | Rating | |-------|--------| | 85-100 | Excellent | | 65-84 | Good | | 50-64 | Moderate | | 0-49 | Poor |

Cyclomatic Complexity (CC)

Number of linearly independent paths through code. Lower is better.

| Range | Rating | |-------|--------| | 1-5 | Simple | | 6-10 | Moderate | | 11-20 | Complex | | 21+ | Very Complex |

Nesting Depth

Maximum depth of nested control structures. Lower is better.

| Range | Rating | |-------|--------| | 1-2 | Flat | | 3-4 | Moderate | | 5-6 | Deep | | 7+ | Very Deep |


Star History


License

MIT