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

happy_refact

v0.2.6

Published

This MCP server provides the `show_impacted_code` tool to predict the impact of changes to code elements (methods, functions, classes, etc.) when modifying any function or method signature. Instruct AI agent to invoke this tool to identify which files and

Readme

happy_refact MCP Server

This MCP server provides the show_impacted_code tool to predict the impact of changes to code elements (methods, functions, classes, etc.) when modifying any function or method signature. Instruct AI agent to invoke this tool to identify which files and elements will be impacted, helping you pull the relevant code into context for AI-driven modifications. The end-to-end tests are performed by an MCP Client that communicates with this server over stdio.

Example instruction: BEFORE making any change to signature of a method/function ALWAYS use tool "show_impacted_code" to understand what other parts of the code that get impacted

Features

Tools

  • show_impacted_code - Identifies files potentially impacted by a change to a code element (method, function, class, etc.).
    • Takes the following parameters:
      • repoPath (required): The directory path of the repository.
      • filePath (required): The file path of the code element being modified, relative to the repository path.
      • elementName (required): The name of the code element (e.g., function name, method name, class name).
      • elementType (optional): The type of the code element (e.g., 'function', 'method', 'class').

Installation/Use

Currently supports C#, Python and Typescript

To use this tool in IDEs like Claude, Cline, Cursor etc you add an MCP Server entry:

"happy_refact": {
    "command": "cmd",
    "args": [
        "/c",
        "npx",
        "-y",
        "happy_refact"
    ]
}

Or

"happy_refact": {
    "command": "npx",
    "args": [ "-y happy_refact"]
}

Development

Install dependencies, including Tree-sitter and language parsers:

npm install tree-sitter tree-sitter-javascript tree-sitter-typescript tree-sitter-python --save-dev --legacy-peer-deps

Then install other project dependencies:

npm install

Build the server:

npm run build

Start the server:

node build/index.js

For development with auto-rebuild:

npm run watch

Running Tests

An end-to-end test client is provided to verify the show_impacted_code tool across sample projects. Ensure the server is built (see Build section) before running tests.

node build/test/run_mcp_test_client.js

This script runs the test client against the built MCP server (build/index.js) and reports PASS/FAIL for each test case across TypeScript, Python, and C# sample projects.

License

This project is licensed under the MIT License. See the LICENSE notes in source