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

hrtool-mcp

v1.0.0

Published

MCP server for HRtool.ai — analyze assessments, surveys, live interviews, and stats from Claude using your personal API key.

Readme

HRtool.ai MCP server

Use HRtool.ai directly from Claude (Desktop, Code, or any MCP client) to look up and analyze assessments, surveys, live interviews, and company stats with your own words. It wraps the HRtool.ai API and authenticates with your personal API key, so everything is scoped to your company and your permissions.

What Claude can do with it

Ask things like:

  • "Summarize how candidates did on the Sales assessment this month and flag the weakest questions."
  • "Pull every result and meeting for [email protected] and give me a hire recommendation with evidence."
  • "Which live interviews scored below 60 last week? Summarize why."
  • "Compare our NPS survey results this quarter vs last."
  • "Create a live meeting for John ([email protected]) using the Account Executive assessment and give me the candidate link."

Tools exposed

| Tool | What it does | |---|---| | list_assessments | Your active assessments | | create_assessment_link | Shareable candidate link for an assessment | | list_responses | Look up results (filter by assessment, email, date, keyword) | | get_response | One result in full (answers, AI analysis, media) | | get_response_media | Download URLs for recorded answers | | list_candidate_responses | All results for one candidate email | | list_meetings | Live meetings (filter by status/email/keyword) | | get_meeting | One meeting in full (AI score, summary, Q&A, transcript, recording, join links) | | get_meeting_media | Recording download URL | | list_candidate_meetings | All meetings for one candidate email | | create_meeting | Create a live meeting (returns join links) | | get_stats | Company performance + usage for a date range |

1. Get an API key

In HRtool.ai: User Settings → API keys → + New key. Copy it (shown once). You need the "Access the API" permission — a manager grants it in Company Settings → Team. Managers have it by default and can give a key to anyone they want to use this.

2. Add it to your MCP client (no install needed — uses npx)

Claude Desktop

Settings → Developer → Edit Config, then add:

{
  "mcpServers": {
    "hrtool": {
      "command": "npx",
      "args": ["-y", "hrtool-mcp"],
      "env": {
        "HRTOOL_API_KEY": "hrt_your_key_here",
        "HRTOOL_BASE_URL": "https://hrtool.ai"
      }
    }
  }
}

Restart Claude Desktop — the hrtool tools appear. npx downloads and runs the latest version automatically; no manual install.

Claude Code

claude mcp add hrtool -e HRTOOL_API_KEY=hrt_your_key_here -e HRTOOL_BASE_URL=https://hrtool.ai -- npx -y hrtool-mcp

Local / development (running from this repo instead of npx)

cd services/mcp-server && npm install
# then in the client config use:  "command": "node", "args": ["/abs/path/to/services/mcp-server/index.js"]

For the HRtool.ai team: publishing to npm

So customers can use the one-line npx config above, publish the package once (and after each change):

cd services/mcp-server
npm install
npm login            # first time only, as the account/org that owns "hrtool-mcp"
npm version patch    # bump the version
npm publish          # publishConfig.access is already "public"

To publish under an org scope instead, rename to @hrtool/mcp in package.json (and in the args customers use). Customers always get the latest via npx -y hrtool-mcp.

Notes

  • Scope & permissions: a key inherits its owner's company and permissions. Revoke it any time in User Settings — it stops working immediately.
  • Rate limit: 300 requests/min per company (the server surfaces a clear message on 429).
  • Security: the key is a credential — keep it in the client's env config, not in shared files.
  • Self-hosted / staging: set HRTOOL_BASE_URL to your instance's URL.