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

@hashrights/mcp

v0.1.1

Published

MCP server for Hashrights — AI-assisted data ingestion for the off-the-shelf data marketplace

Readme

@hashrights/mcp

MCP server for Hashrights — the off-the-shelf data marketplace. Connect Claude (or any MCP-capable client) and ingest collections and sold-buyer data straight from spreadsheets, Salesforce exports, or any CRM. The AI maps your messy source data; Hashrights provides safe, deterministic tools.

Setup

1. Get an API key — in the Hashrights app: Account Settings → API & AI access → Create key. The hr_live_… key is shown once; it acts as an account admin over the API, so store it like a password.

2. Connect your client

Claude Desktop (claude_desktop_config.json):

{
  "mcpServers": {
    "hashrights": {
      "command": "npx",
      "args": ["-y", "@hashrights/mcp"],
      "env": { "HASHRIGHTS_API_KEY": "hr_live_..." }
    }
  }
}

Claude Code:

claude mcp add hashrights --env HASHRIGHTS_API_KEY=hr_live_... -- npx -y @hashrights/mcp

3. Talk to it

"Here's a CSV export from Salesforce — create a collection called Q3 Enterprise Dataset and mark every closed-won account as already sold."

Running a Salesforce or Google Drive MCP server alongside works naturally — the AI reads from your source system and writes to Hashrights in the same conversation.

Tools

| Tool | What it does | | --- | --- | | get_started | The recommended ingestion workflow — read this first | | list_collections | Collections with status and ledger buyer counts | | create_collections | Batch create/update; external_id makes re-runs idempotent; optionally attach customer_domains | | publish_collection | Make a draft visible to invited partners | | resolve_companies | Batch-match names/domains against the global registry (messy URLs/emails normalized server-side) | | add_companies | Register companies the registry is missing | | mark_buyers_sold | Append buyers to a collection's ledger (blocks partner requests; cannot be undone) | | list_opportunities | Read-only: the buyer-clearance queue and history | | browse_partner_marketplace | Read-only: collections partners have shared with you |

Approvals, declines, and deal closes stay in the Hashrights app by design.

Configuration

| Env var | Required | Description | | --- | --- | --- | | HASHRIGHTS_API_KEY | yes | Account-scoped hr_live_ key | | HASHRIGHTS_SUPABASE_URL | no | API base override (defaults to production) |

Security

  • Domains are normalized and hashed server-side — no salts or hashing logic ship in this package.
  • Keys are revocable instantly from Account Settings.
  • The API exposes the same privacy-redacted views as the app; customer lists are never exposed.