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

@jobflow/jobflow-mcp

v0.1.2

Published

MCP server for JobFlow - AI-powered job application tracker

Downloads

49

Readme

JobFlow MCP Server

MCP server for JobFlow — AI-powered job application tracker.

Expose your JobFlow database as MCP tools so AI agents can search, add, and update jobs automatically.

Installation

npm install -g @jobflow/jobflow-mcp

Or use with npx (no install required):

npx @jobflow/jobflow-mcp

MCP Client Configuration

Add to your MCP client config file:

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

{
  "mcpServers": {
    "jobflow": {
      "command": "npx",
      "args": ["@jobflow/jobflow-mcp"]
    }
  }
}

Cursor (~/.cursor/mcp.json):

{
  "mcpServers": {
    "jobflow": {
      "command": "npx",
      "args": ["@jobflow/jobflow-mcp"]
    }
  }
}

Database Setup

The MCP server reads from and writes to ~/.jobflow/db.json.

Initial export:

  1. Open JobFlow extension → Settings
  2. Click "Export for MCP"
  3. Save the file as ~/.jobflow/db.json

Two-way sync:

  • When agents update jobs (status, notes, scores), the changes are saved to ~/.jobflow/db.json
  • Open JobFlow → Settings → "Import from MCP" to bring agent changes into the extension

Available Tools

| Tool | Description | |------|-------------| | get_jobs | List all jobs, optionally filtered by status, company, or skills | | add_job | Add a new job to the pipeline | | update_status | Move a job through pipeline stages | | add_note | Add a note to a job | | get_profile | Get your user profile | | score_fit | Score how well a job fits your profile | | get_analytics | Get pipeline stats: job counts, top skills, response rates | | delete_job | Remove a job from the pipeline |

Job Statuses

  • saved — Job found but not yet applied
  • applied — Application submitted
  • interview-hr — HR/Recruiter screen
  • interview-tech-intro — Technical intro call
  • interview-tech-system — System design interview
  • interview-tech-code — Coding interview
  • offer — Received offer
  • rejected — Application rejected

Examples

// Add a job
await mcp.callTool("add_job", {
  sourceUrl: "https://linkedin.com/jobs/view/123",
  title: "Senior Software Engineer",
  company: "Acme Corp",
  location: "San Francisco, CA",
  skills: ["TypeScript", "React", "Node.js"]
});

// Get all jobs
const jobs = await mcp.callTool("get_jobs", {});

// Get jobs at a specific company
const stripeJobs = await mcp.callTool("get_jobs", {
  company: "Stripe"
});

// Update status
await mcp.callTool("update_status", {
  jobId: 1,
  status: "applied"
});

// Get analytics
const stats = await mcp.callTool("get_analytics", {});

Requirements

  • Node.js 18+
  • JobFlow browser extension (for database export)

License

MIT