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

hyring-mcp

v1.0.1

Published

MCP server for the Hyring AI hiring platform — AI Video, Coding, EPT, Phone, Resume Screener, and Virtual Interview Platform.

Readme

A Model Context Protocol server that gives Claude full access to the Hyring AI hiring platform. Build assessments, invite candidates, and review reports — all from a chat with Claude.

What you can do

Hyring MCP exposes Hyring's full hiring suite as MCP tools. Once connected, you can ask Claude things like:

  • "List my active assessments."
  • "Show me the top candidates for the Senior Backend role."
  • "Invite [email protected] to the React assessment."
  • "Pull the report for the candidate who scored highest yesterday."
  • "Move candidate #3 to Shortlisted."

Supported Hyring products:

| Product | What it does | |---|---| | AI Video Interviewer (One-Way) | Async video questions with AI scoring | | AI Video Interviewer (Two-Way) | Conversational AI interviewer | | AI Coding Interviewer | Live coding rounds with AI evaluation | | English Proficiency Test (EPT) | CEFR-graded English assessment | | AI Phone Screener | Outbound AI phone interviews | | AI Resume Screener | AI-graded resume matching | | Virtual Interview Platform (VIP) | Human + AI live interview rounds |

Install & connect

Hyring MCP runs via npx — no manual install needed.

Claude Desktop

Open claude_desktop_config.json (how to find it) and add:

{
  "mcpServers": {
    "hyring": {
      "command": "npx",
      "args": ["-y", "hyring-mcp"]
    }
  }
}

Restart Claude Desktop. You'll see a "hyring" entry under available tools.

Claude Code

claude mcp add hyring -- npx -y hyring-mcp

Cursor, Windsurf, and other MCP clients

Add an mcpServers entry pointing to npx -y hyring-mcp.

Sign in

The first time Claude calls a Hyring tool, it'll prompt you to sign in:

  1. Claude asks for your Hyring employer email.
  2. You receive a one-time code in your inbox.
  3. Share the code with Claude.
  4. Done — Claude is signed in. The session is saved at ~/.hyring/credentials.json (mode 600).

Sign out anytime by asking Claude to "log me out of Hyring."

Product-specific entry points

If you only use one Hyring product, you can run a slimmer server with just those tools. Replace hyring-mcp in the config above with one of:

| Command | Product | |---|---| | hyring-mcp | All products (default) | | hyring-mcp-fixed | AI Video Interviewer (One-Way) | | hyring-mcp-dynamic | AI Video Interviewer (Two-Way) | | hyring-mcp-coding | AI Coding Interviewer | | hyring-mcp-verbal | English Proficiency Test | | hyring-mcp-phone | AI Phone Screener | | hyring-mcp-resume | AI Resume Screener | | hyring-mcp-vip | Virtual Interview Platform | | hyring-mcp-results | All reports/results, no build tools |

Example for phone-only — note the -p hyring-mcp flag tells npx to install the hyring-mcp package and run the named binary inside it:

{
  "mcpServers": {
    "hyring": {
      "command": "npx",
      "args": ["-y", "-p", "hyring-mcp", "hyring-mcp-phone"]
    }
  }
}

What's exposed

Across all products, Hyring MCP provides tools for:

  • Authrequest_otp, verify_otp, whoami, logout, token_status
  • Assessments — list, view, get stats, build new ones, publish
  • Candidates — list by status, invite (single or bulk), send reminders, update hiring stage
  • Reports — full candidate reports with scores, transcripts, AI summaries, and media links for every product

Tool names follow <verb>_<noun> (e.g., list_candidates, get_coding_report, update_hiring_stage). Claude picks the right tool based on your request — you don't need to memorize them.

Requirements

  • Node.js 18+
  • A Hyring employer account (sign up)

Security

  • Credentials are stored locally at ~/.hyring/credentials.json with chmod 600.
  • Tokens are JWTs scoped to your employer account. Expired sessions prompt re-authentication.
  • All API calls go over HTTPS to *.hyring.com.
  • No telemetry, no analytics, no data leaves your machine except direct calls to the Hyring API.

Support

Privacy

This MCP server is a client to the Hyring platform. The same data and privacy practices apply.

Read the full policy: hyring.com/privacy-policy.

The MCP server itself stores nothing beyond a JWT session token at ~/.hyring/credentials.json (mode 600) on the user's machine. No telemetry, no analytics — see the Security section above.

License

MIT — see LICENSE.