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

jd-intel

v0.1.0

Published

Fetch and normalize job descriptions across every major ATS (Greenhouse, Lever, Ashby) — for your AI assistant, no copy-paste.

Readme

jd-intel

MIT License Node.js 18+ npm

Stop pasting job descriptions into AI assistants. Let your AI fetch them directly.

Full text. Clean structure. Across every major ATS. No copy-paste. No context loss.


Why this exists

Your AI assistant already knows a lot about you. Your resume is in its memory. Your target roles, your past projects, your background. Ready to help the moment you feed it a job description.

So you copy-paste.

A JD from Stripe. Another from Mercury. Six more from your target list. Half have broken HTML. Salary info dies in translation. Links get stripped. And for every role, the dance starts over.

You could wait for the job boards to ship their own MCPs. They'll get there eventually. On their timeline. Filtered through their priorities, not yours. Tied to their query abstractions.

jd-intel skips that wait. Raw JDs, fetched directly by your AI, on your terms. One level below the curated layer.

"Claude, pull the senior PM role at Stripe and draft a cover letter based on my resume."

Done.


What you can do with it

  • Draft cover letters without pasting anything
  • Tailor your resume across ten roles in one conversation
  • Rank openings by fit with your background
  • Scan a whole sector: "Pull PM roles at fintech companies posted this week"
  • Research teams by reading their JDs in bulk

The toolkit fetches. Your AI thinks.


Install

For Claude Desktop, Cursor, Windsurf users

Add to your MCP config file:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

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

Restart your AI client. The tools appear automatically. Ask your AI to fetch any role.

One-command install (avoids hand-editing the config):

npx jd-intel-mcp install

For developers (CLI and library)

npm install jd-intel

Or run without installing:

npx jd-intel fetch stripe --title-filter "product manager"

Or import as a library:

import { fetchJobs, registry } from 'jd-intel';

const jobs = await fetchJobs({
  company: 'ramp',
  titleFilter: 'engineer',
  postedWithinDays: 14,
  limit: 50,
});

Node.js 18+. No API keys. No configuration.


MCP tools

| Tool | Purpose | |------|---------| | fetch_jobs | Get open roles at a company with filters for role type, topic, location, and recency | | search_registry | Find companies by name or sector | | detect_ats | Identify which ATS platform a company uses |

Plus one Resource: registry://jd-intel/all. Full company registry, grouped by ATS. Fetched lazily for broad catalog surveys.


What you get back

Every job normalizes to one schema, across every platform:

{
  "id": "a1b2c3d4e5f6",
  "company": "Stripe",
  "title": "Senior Product Manager, Integrations",
  "department": "Product",
  "location": "San Francisco, CA",
  "locationType": "hybrid",
  "salary": { "min": 180000, "max": 260000, "currency": "USD" },
  "description": "Lead strategy for Stripe's integration ecosystem...",
  "url": "https://boards.greenhouse.io/stripe/jobs/12345",
  "postedAt": "2026-04-10T14:30:00Z"
}

No custom parsing per company.

Data model

| Field | Description | |-------|-------------| | title | Full job title | | company | Normalized company name | | department | Team or department (when provided) | | location | City, state, country, or remote | | locationType | remote, hybrid, or onsite | | salary | Min-max range with currency (when available) | | description | Full JD in clean markdown | | url | Direct link to the posting | | postedAt | Publication date (when provided) |


Platforms supported

| Platform | Status | Typical use | |----------|--------|-------------| | Greenhouse | Shipped | Most widely used ATS in tech | | Ashby | Shipped | Growing fast with startups | | Lever | Shipped | Common at mid-stage companies | | BambooHR | Planned | Mid-market companies | | Workday | Planned | Large enterprises |

Adding a new ATS is a single adapter file. See Contributing.


Filters (quick reference)

| Flag | What it matches | Use for | |------|-----------------|---------| | --title-filter | Title only | Role identity (PM, engineer, designer) | | --filter | Title + department + description | Topic or scope (integrations, growth) | | --posted-within-days | Recent postings | Recency cuts | | --location-include | Location contains any keyword | Region targeting | | --location-exclude | Location contains no keyword | Drop geographic noise | | --limit | First N results | Cap output size |

All filters AND together. Deep dive on patterns and gotchas: docs/filters.md.


Roadmap

Shipped

  • Library, CLI, and MCP server (three surfaces of one toolkit)
  • Greenhouse, Ashby, Lever adapters
  • Title, topic, location, and date filters
  • Salary extraction from JD text
  • Verified company registry (66 companies)

Next

  • Anthropic MCP marketplace submission
  • Setup guide with screenshots (non-technical walkthrough)
  • Remote MCP transport (for Claude.ai Custom Connectors)

Planned

  • BambooHR and Workday adapters
  • Temporal tracking (when roles open, close, reopen)
  • Change detection
  • Resume-aware fit scoring

Contributing

Add a company to the registry: submit a PR to the appropriate file in registry/.

Add an ATS adapter: new file in src/adapters/. One adapter, one file. Follow the pattern of the existing three.

Request a company: open an issue. Tell me who's missing.


Built by

Prashant R. PM who builds. I write about what actually happens at the layer below the AI hype.

License

MIT