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

@kjob/mcp-server

v0.2.0

Published

MCP server for launching kjob offer scans from a local device.

Readme

@kjob/mcp-server

MCP (Model Context Protocol) server that lets users launch kjob offer scans from their own device — from Claude Desktop, Cursor, or any MCP client.

Why this design is cheap for the owner

The server is stdio-only: each user runs it locally (via npx, or built from this repo). It makes authenticated HTTPS calls to the existing kjob API.

  • No extra hosting, containers, or domain to operate.
  • No long-running process on the owner's infrastructure.
  • Reuses the existing personal_api_tokens table and /api/offers/scan endpoint. The only server-side change is accepting Authorization: Bearer kjob_* in addition to Clerk sessions.
  • Per-user rate limiting and credit consumption are enforced by the existing scan route — no duplicate logic.

Tools exposed

| Tool | Description | | ------------- | ---------------------------------------------------------------------- | | scan_offer | Extracts a raw job offer (text/HTML) and saves it. Returns offerId. |

Install and run (end user)

  1. Generate an API key in the kjob web app (Settings → API keys). Copy the kjob_... plaintext — it is shown only once.
  2. Add the server to the MCP client config.

Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json)

{
  "mcpServers": {
    "kjob": {
      "command": "npx",
      "args": ["-y", "@kjob/mcp-server"],
      "env": {
        "KJOB_API_URL": "https://www.kjob.fr",
        "KJOB_API_KEY": "kjob_xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx"
      }
    }
  }
}

Cursor / other MCP clients

Same command and env vars; follow the client's MCP server registration docs.

Local development (owner)

pnpm --filter @kjob/mcp-server build
KJOB_API_URL=http://localhost:3000 \
KJOB_API_KEY=kjob_xxxx... \
  node apps/mcp-server/dist/index.js

Pair it with pnpm --filter @kjob/web-next dev to test against the local API.

Environment variables

| Name | Required | Description | | --------------- | -------- | ------------------------------------------------- | | KJOB_API_URL | yes | Base URL of the kjob web app, e.g. https://www.kjob.fr. | | KJOB_API_KEY | yes | Personal API token; must start with kjob_. |