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

@nuanced-dev/mcp

v0.3.2

Published

Nuanced is an MCP server that provides agents like Cursor and Claude Code with code navigation data

Readme

Nuanced MCP Server

Model Context Protocol (MCP) server that provides code analysis capabilities. The code graph and LSP tools are license‑gated and supports multiple activation paths suitable for native and Docker deployments.

Please see the dev docs for more information.

Tools

Nuanced MCP supports the following tools:

| Tool | Requires Active License | Description | | ----------------------- | ----------------------- | ---------------------------------------------------------------------------------------------- | | index | Yes | Index or re-index the code in a directory. | | analyze_function | Yes | Analyze a function with its call graph and metadata. | | list_files | Yes | List files in the current workspace. | | read_source | Yes | Read source code for a file. | | definitions_in_file | Yes | Retrieves symbol definitions for a specified file. | | find_definition | Yes | Finds the definition of a symbol for a given position in a file. | | find_identifier | Yes | Finds an identifier by name within a file. | | find_referenced_symbols | Yes | Retrieves any symbols and their definitions within the function body of the provided position. | | find_references | Yes | Retrieves a symbol’s references. | | subscription_status | No | Return cached activation status for the MCP server process. | | activate_subscription | No | Validate a user‑provided license key and activate. | | resume_subscription | No | Re‑validate using env/file without asking the user for the key. |

Subscription Activation Options

Start a free trial or get a subscription at https://www.nuanced.dev/pricing.

Once you have a license key, activate Nuanced using one of the following methods:

  • On the command line, run:

    nuanced activate
  • Set environment variable NUANCED_LICENSE_KEY=YOUR_LICENSE_KEY

  • Edit the license config file (JSON) to say { "license_key": "YOUR_LICENSE_KEY" }:

    • macOS/Unix: ~/.config/nuanced/license.json
    • Linux: $XDG_CONFIG_HOME/nuanced/license.json or ~/.config/nuanced/license.json
    • Windows: %APPDATA%\nuanced\license.json
    • Docker: Set environment variable NUANCED_DOCKER=1 and /var/lib/nuanced/license.json (via Docker named volume nuanced-mcp-data)

MCP Client Integration

Configure your favorite agent or IDE to use Nuanced by instructing it to use the following commands:

npx -y @nuanced-dev/mcp@latest

Please see the dev docs for configuration instructions for various agents.