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

@gera-services/mcp-gera-jobs

v1.0.1

Published

GeraJobs MCP server — search global job categories, read real salary benchmarks, and look up country job markets. Offline, no auth. A Gera Systems product.

Downloads

294

Readme

@gera-services/mcp-gera-jobs

GeraJobs MCP server — give any AI agent (Claude, ChatGPT with tools, Cursor, or any Model Context Protocol client) direct access to the GeraJobs global jobs dataset: 30 job categories, 20 country job markets, and salary benchmarks aggregated from 1,002 real crawled job listings.

Everything is answered locally from on-disk data — no backend, no network, no auth, no API key. It is the same data the GeraJobs product renders. A Gera Systems product.

Tools

| Tool | What it does | |---|---| | search_job_categories | Free-text search over the 30 categories (name, description, skills, keywords). Returns avg USD salary range, top skills, remote %, trending flag. | | get_salary_benchmark | Real salary benchmarks for a role per country/currency — sample size + median / p25 / p75 / low / high annual pay, plus sample listings. Aggregated from crawled listings. | | list_job_categories | Compact index of all 30 categories (id, name, salary range, trending) — the canonical ids for the other tools. | | get_job_market | Country hiring profile: avg monthly wage, top industries/employers, job + AI growth, remote adoption, summary. Lookup by ISO code, country name, or city. | | get_category_details | Full profile + curated FAQ for one category (salaries, skills, how to find roles). |

All numbers trace to the underlying GeraJobs datasets; salary figures derive from real crawled listings (snapshot date and total listing count are returned in every salary response). Orientation only — not a contractual salary guarantee.

Install & run

# From the npm registry (once published):
npx -y @gera-services/mcp-gera-jobs

# Or from this repo:
cd packages/mcp-gera-jobs
node scripts/build-dataset.mjs   # snapshot the real datasets (already committed)
npm run build                    # tsc --noCheck -> dist/
npm run smoke                    # prove tools/list + tools/call over stdio

Claude Desktop

Add this to your claude_desktop_config.json (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

{
  "mcpServers": {
    "gera-jobs": {
      "command": "npx",
      "args": ["-y", "@gera-services/mcp-gera-jobs"]
    }
  }
}

Then restart Claude Desktop. Ask things like:

  • "What's the median salary for a data scientist in the US?"
  • "Show me trending remote job categories and their top skills."
  • "What's the hiring market like in Armenia right now?"

Cursor / other stdio MCP clients

Point the client at the mcp-gera-jobs stdio command (npx -y @gera-services/mcp-gera-jobs), or to node bin/cli.js when running from a local checkout.

Data sources (real, in-repo)

  • Categories: apps/gerajobs-web/src/data/job-categories.ts (30 categories)
  • Markets: apps/gerajobs-web/src/data/job-markets.ts (20 countries)
  • Salary benchmarks: apps/gerajobs-web/src/data/salary-cluster.generated.ts — aggregated from 1,002 real crawled GeraJobs listings.

Regenerate the bundled snapshot with node scripts/build-dataset.mjs.


A GeraJobs product, by Gera Systems Ltd. MIT licensed.