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

ashby-mcp

v1.3.2

Published

MCP server for Ashby ATS — candidate evaluation workflow

Readme

ashby-mcp

MCP server for Ashby ATS — designed for candidate evaluation workflows.

This server exposes Ashby's recruiting data through the Model Context Protocol, letting AI agents review candidates, read application details, and write evaluation notes.

Setup

1. Get an Ashby API Key

  1. Go to your Ashby admin settings → Integrations → API Keys
  2. Create a new API key with these permissions:
    • candidatesRead — read candidate profiles, applications, notes, feedback
    • jobsRead — read job listings and details
    • interviewsRead — read interview stages and plans
    • candidatesWrite — add notes, tags, move application stages, archive applications
    • hiringProcessMetadataRead — list archive reasons and email templates

2. Install

Option A: npx (recommended — no clone needed)

Just add the config below and it works immediately.

Option B: From source

git clone https://github.com/dewierwan/ashby-mcp.git && cd ashby-mcp
npm install
npm run build

3. Configure

Claude Code

Add to ~/.mcp.json:

{
  "mcpServers": {
    "ashby": {
      "command": "npx",
      "args": ["-y", "ashby-mcp"],
      "env": {
        "ASHBY_API_KEY": "your-api-key-here"
      }
    }
  }
}

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "ashby": {
      "command": "npx",
      "args": ["-y", "ashby-mcp"],
      "env": {
        "ASHBY_API_KEY": "your-api-key-here"
      }
    }
  }
}

Tools

Read tools

| Tool | Description | |------|-------------| | ashby_list_jobs | List open jobs with IDs, titles, department, location, status | | ashby_get_job_details | Full job details including interview plan stages | | ashby_list_candidates_for_job | List candidates/applications for a job with stage and status | | ashby_get_candidate | Comprehensive candidate profile with all applications | | ashby_get_application_details | Full application with stage history, feedback, evaluations | | ashby_get_candidate_notes | All notes on a candidate | | ashby_search_candidates | Search candidates by name or email | | ashby_list_interview_stages | List all interview stages (pipeline reference) | | ashby_get_feedback | Submitted feedback/scorecards for an application | | ashby_get_resume | Download and extract text from a candidate's resume (PDF, text) | | ashby_list_applications | List applications across all jobs with date, status, stage, and source filters | | ashby_get_pipeline_summary | Pipeline overview with candidate counts per stage, per job | | ashby_list_archive_reasons | List available archive/rejection reasons | | ashby_list_email_templates | List email templates for rejection emails |

Write tools

| Tool | Description | |------|-------------| | ashby_add_candidate_note | Add an evaluation note to a candidate | | ashby_move_application_stage | Move an application to a different interview stage | | ashby_add_candidate_tag | Tag a candidate (e.g. "Strong Hire") | | ashby_archive_application | Archive an application with reason and optional rejection email | | ashby_bulk_archive | Archive multiple applications at once (max 25) |

Example Prompts

Show me all open engineering jobs.

List the candidates for the Senior Backend Engineer role and summarize where each one is in the pipeline.

Pull up the full profile for candidate Jane Smith — I want to see her resume info, application history, and any existing notes.

Review the feedback submitted for application abc-123 and summarize the interviewer evaluations.

Add a note to candidate xyz-456: "Strong technical skills demonstrated in system design round. Recommend advancing to final interview."

Move application abc-123 to the "Final Interview" stage.

Read the resume for candidate Jane Smith and summarize her experience.

How many people applied this week?

What does our pipeline look like for the Community Lead role?

Show me all candidates currently in the Work test stage.

Archive John Smith's application for the Senior Engineer role with reason "Not enough experience" and send the standard rejection email.

Show me the available archive reasons and rejection email templates.

Bulk archive all candidates in Application Review for the closed Designer role.

Testing

Verify API connectivity

ASHBY_API_KEY=your-key npm run test-api

Test with MCP Inspector

ASHBY_API_KEY=your-key npx @modelcontextprotocol/inspector node dist/index.js

Run directly

ASHBY_API_KEY=your-key node dist/index.js

The server communicates over stdio — it will start silently and wait for MCP protocol messages.

Development

npm install
npm run build    # compile TypeScript to dist/
npm test         # run tests
npm start        # run the built server