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

@getnella/mcp

v0.2.7

Published

Nella MCP Server — codebase intelligence for AI coding agents. Grounded search, persistent context, and deep code understanding via the Model Context Protocol.

Downloads

96

Readme

@getnella/mcp

CLI and MCP server package for Nella.

Install

npm install -g @getnella/mcp

The package installs:

  • nella for the CLI
  • mcp as the direct stdio MCP entrypoint used by npx -y @getnella/mcp --workspace /path/to/project

Quick Start

# Show CLI help
nella help

# Configure a supported client
nella connect --client claude

# Claude Code shortcut
nella setup

# Start the local stdio MCP server directly
npx -y @getnella/mcp --workspace /path/to/project

If you want to build or refresh the local index yourself:

nella auth login
nella index --force

nella index requires either a Nella login or Azure embedding environment variables.

Commands

| Command | Purpose | |---------|---------| | nella index [--workspace <path>] [--force] [--graph] | Index a workspace or build a dependency graph from an existing index | | nella mcp --workspace <path> | Start the local stdio MCP server | | nella serve [--port <number>] [--host <host>] | Start the hosted HTTP MCP server | | nella connect [--mode <local\|hosted>] [--client <name>] | Write MCP client config for supported agents | | nella auth <login\|logout\|status> | Manage CLI authentication | | nella setup | Alias for nella connect --client claude-code --mode local -y | | nella help | Show top-level help |

Direct stdio/local launches must include --workspace, for example npx -y @getnella/mcp --workspace /path/to/project.

MCP Tools

| Tool | Description | |------|-------------| | nella_index | Index or re-index a workspace | | nella_search | Search indexed code with hybrid, semantic, or lexical mode | | nella_get_context | Read the current session context | | nella_add_assumption | Record an assumption about the codebase | | nella_check_assumptions | Review assumption status | | nella_check_dependencies | Check dependency drift | | nella_heartbeat | Verify trust-chain continuity between tool calls |

Manual Client Config

Local stdio example:

{
  "mcpServers": {
    "nella": {
      "command": "npx",
      "args": ["-y", "@getnella/mcp", "--workspace", "/absolute/path/to/project"]
    }
  }
}

Hosted example:

{
  "mcpServers": {
    "nella": {
      "url": "https://mcp.getnella.dev/mcp",
      "headers": {
        "Authorization": "Bearer nella_your_key_here"
      }
    }
  }
}

Notes

  • nella connect supports claude, claude-code, vscode, cursor, windsurf, cline, and roo-code.
  • The local nella serve implementation requires SUPABASE_URL and SUPABASE_SERVICE_ROLE_KEY, and uses REDIS_URL when available.

Docs