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

@aicandidatehub/mcp

v0.4.0

Published

MCP server for aicandidatehub.com — profile, jobs, CV, compensation tools for AI agents.

Readme

@aicandidatehub/mcp

An MCP server for CandidateHub — providing AI agents with tools to manage profiles, resumes, jobs, and compensation data.

Features

  • Profile Management — fetch and manage your candidate profile
  • Resume Ingestion — import resumes from text, URLs, or file uploads
  • Job Tracking — import and track job opportunities
  • Job Analysis — analyze fit between your profile and job postings
  • CV Generation — generate role-customized resumes
  • Cover Letters — generate tailored cover letters
  • Compensation Intelligence — lookup salary and benefits benchmarks

Installation

Prerequisites

  • Node.js 20 or later
  • A CandidateHub Personal Access Token (create at https://aicandidatehub.com/account/mcp-tokens)

Claude Desktop

  1. Create a Personal Access Token at https://aicandidatehub.com/account/mcp-tokens
  2. Edit ~/Library/Application Support/Claude/claude_desktop_config.json:
{
  "mcpServers": {
    "aicandidatehub": {
      "command": "npx",
      "args": ["-y", "@aicandidatehub/mcp"],
      "env": {
        "CANDIDATEHUB_TOKEN": "chmcp_your_token_here"
      }
    }
  }
}
  1. Restart Claude Desktop. The MCP server will connect automatically.

Claude Code

  1. Create a Personal Access Token at https://aicandidatehub.com/account/mcp-tokens
  2. Set your environment:
export CANDIDATEHUB_TOKEN=chmcp_your_token_here
  1. Start Claude Code with the MCP server:
npx @aicandidatehub/mcp

Cursor

  1. Create a Personal Access Token at https://aicandidatehub.com/account/mcp-tokens
  2. Edit ~/.cursor/mcp_config.json:
{
  "mcpServers": {
    "aicandidatehub": {
      "command": "npx",
      "args": ["-y", "@aicandidatehub/mcp"],
      "env": {
        "CANDIDATEHUB_TOKEN": "chmcp_your_token_here"
      }
    }
  }
}
  1. Restart Cursor.

OpenClaw

  1. Create a Personal Access Token at https://aicandidatehub.com/account/mcp-tokens
  2. Configure in your OpenClaw settings:
{
  "servers": {
    "aicandidatehub": {
      "command": "npx -y @aicandidatehub/mcp",
      "env": {
        "CANDIDATEHUB_TOKEN": "chmcp_your_token_here"
      }
    }
  }
}

Codex

Install and run directly:

npm install -g @aicandidatehub/mcp
export CANDIDATEHUB_TOKEN=chmcp_your_token_here
aicandidatehub-mcp

Goose

  1. Create a Personal Access Token at https://aicandidatehub.com/account/mcp-tokens
  2. Edit your Goose config:
mcpServers:
  aicandidatehub:
    command: npx
    args:
      - '-y'
      - '@aicandidatehub/mcp'
    env:
      CANDIDATEHUB_TOKEN: chmcp_your_token_here
  1. Restart Goose.

Available Tools

Profile & Data

  • get_profile — Fetch your candidate profile
  • import_resume_from_text — Import a resume from plain text
  • import_resume_from_url — Import a resume from a URL or LinkedIn profile
  • import_resume_from_source — Import from URL or base64-encoded content
  • import_job_from_url — Import a job from a URL

Job & Career

  • list_jobs — List tracked job opportunities
  • get_job — Get details of a specific job
  • analyze_job_fit — Analyze how well your profile matches a job
  • rewrite_cv_for_job — Generate a role-customized resume
  • generate_cover_letter — Generate a tailored cover letter

Compensation

  • analyze_compensation — Analyze compensation for a job or role
  • get_compensation_for_role — Lookup salary benchmarks for a role

Account

  • signup_url — Generate a signup link (no authentication required)

Environment Variables

  • CANDIDATEHUB_TOKEN — Your Personal Access Token (required)
  • CANDIDATEHUB_API_BASE — API endpoint (defaults to https://www.aicandidatehub.com). The apex (aicandidatehub.com) is intentionally not the default: Cloudflare 301-redirects apex → www, and 301 drops POST bodies → PAT exchange fails with 405. If you must use the apex, configure Cloudflare to issue 308 (or set this variable explicitly).
  • MCP_CLIENT — Client identifier for tracking (defaults to 'unknown')

Development

npm install
npm run build
npm test
npm run test:integration  # Requires MCP_INTEGRATION=1 and MCP_TEST_PAT
npm run dev              # Watch mode

License

Proprietary — CandidateHub