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

heurin

v0.1.1

Published

Remember everyone. Your people memory, read and write, from any AI tool or terminal.

Readme

heurin

Remember everyone. Your people memory, read and write, from any AI tool or terminal.

Heurin knows your contacts, meetings, notes, and follow-ups. The CLI lets you talk to your Heurin agent directly or connect it to AI tools like Claude Code, Cursor, and Claude Desktop via MCP.

Install

npm install -g heurin

Quick start

# Authenticate
heurin auth login

# Ask about someone
heurin "who is Lisa Chen"

# Prep for a meeting
heurin "prep me for my 2pm"

# Save a note about someone
heurin "note that Marcus is raising a Series B"

# Log a new contact with a business card photo
heurin "met this person at SaaStr" --image ./card.jpg

# Check your follow-ups
heurin "what nudges do I have this week"

MCP server

Connect Heurin to any AI tool that supports Model Context Protocol.

Claude Code (global)

Add to ~/.claude/settings.json:

{
  "mcpServers": {
    "heurin": {
      "command": "heurin",
      "args": ["mcp"],
      "type": "stdio"
    }
  }
}

Cursor

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "heurin": {
      "command": "heurin",
      "args": ["mcp"],
      "type": "stdio"
    }
  }
}

Once connected, your AI assistant can look up contacts, prep for meetings, save notes, and manage follow-ups on your behalf.

Auth

heurin auth login     # Authenticate via browser
heurin auth status    # Check current session
heurin auth logout    # Revoke and remove token

For automation, set the HEURIN_API_KEY environment variable instead of browser login.

Flags

| Flag | Description | |------|-------------| | --image <path> | Attach a photo (business card, screenshot) | | --json | Output structured JSON | | --chat <id> | Continue a previous conversation | | --help | Show help text | | --version | Show version |

Learn more

heurin.com