jobjourney-claude-plugin

jobjourney-claude-plugin

An MCP server that enables AI-assisted job search workflows including job discovery, application tracking, resume evaluation, and cover letter generation, with support for multiple job sources and scheduled scraping.

Category
访问服务器

README

🚀 JobJourney Claude Plugin

A production-ready MCP server for JobJourney with AI job-search tools, local job discovery, and scheduled scraping from Claude.

npm version License: AGPL-3.0 Commercial License Node Protocol GitHub stars


✨ What It Does

  • 🤖 AI job-search workflows for resume fit scoring, cover letters, CV generation, interview prep, and career chat
  • 🗂️ Application tracking with saved jobs, notes, status changes, starring, search, and dashboard analytics
  • 🔍 Local job discovery with a canonical discovery engine that stores results in local SQLite
  • 🌐 Mixed scraping strategy: LinkedIn uses direct HTTP guest scraping, while blocked sites like SEEK use Playwright
  • 🏢 ATS expansion for supported providers like Greenhouse and Lever after discovery
  • Scheduled discovery through the background agent and MCP tools
  • 💾 Local storage for jobs, runs, schedules, and discovery reports in ~/.jobjourney/jobs.db

📸 Demo

Use it naturally from Claude:

"Use discover_jobs with keyword full stack, location Sydney, sources linkedin and seek, pages 1."

"Use search_jobs and show me the latest LinkedIn roles in Sydney."

"Use schedule_discovery to run every day at 9am for backend jobs in Melbourne."

"Evaluate how well my resume matches this job and draft a cover letter."

If you want product screenshots or GIFs later, this is the right place to add them.


📦 Installation

Option A: Claude Code

claude mcp add jobjourney \
  -e JOBJOURNEY_API_URL=https://server.jobjourney.me \
  -e JOBJOURNEY_API_KEY=jj_your_api_key_here \
  -e TRANSPORT=stdio \
  -- npx -y jobjourney-claude-plugin@latest

Option B: Claude Desktop

Add this to your Claude Desktop config file (claude_desktop_config.json):

{
  "mcpServers": {
    "jobjourney": {
      "command": "npx",
      "args": ["-y", "jobjourney-claude-plugin@latest"],
      "env": {
        "JOBJOURNEY_API_URL": "https://server.jobjourney.me",
        "JOBJOURNEY_API_KEY": "jj_your_api_key_here",
        "TRANSPORT": "stdio"
      }
    }
  }
}

Playwright prerequisite

For local browser-backed sources like SEEK, install a browser once:

npx playwright install chromium

🚀 Quick Start

1. Connect the plugin

claude mcp add jobjourney \
  -e JOBJOURNEY_API_URL=https://server.jobjourney.me \
  -e JOBJOURNEY_API_KEY=jj_your_api_key_here \
  -e TRANSPORT=stdio \
  -- npx -y jobjourney-claude-plugin@latest

2. Log in to browser-backed sites when needed

From Claude:

Use login_jobsite with site "seek"

3. Run discovery

From Claude:

Use discover_jobs with keyword "full stack", location "Sydney", sources ["linkedin", "seek"], pages 1

4. Query the stored results

Use search_jobs with source "linkedin" and limit 5

5. Schedule it

Use schedule_discovery with keyword "full stack", location "Sydney", time "09:00", sources ["linkedin", "seek"]

🔍 Source Support

Source Status Transport Notes
linkedin Active HTTP guest scraping Primary supported LinkedIn path
seek Active Playwright Local browser session support
indeed Planned Playwright Not implemented yet
jora Planned Playwright Not implemented yet
ATS Support
greenhouse Detect + expand
lever Detect + expand
workday Detect only
smartrecruiters Detect only
ashby Detect only

🧠 How Local Discovery Works

The local discovery engine lives under src/discovery and uses one canonical job model across all sources.

LinkedIn

  1. Fetch guest search results
  2. Fetch guest job detail HTML for each posting
  3. Extract description, metadata, and external apply URL
  4. Detect ATS from the external URL
  5. Expand supported ATS companies

SEEK

  1. Launch Playwright
  2. Use the browser-backed source flow
  3. Normalize results into the same canonical job schema

Storage

Local runs are stored in:

  • jobs DB: ~/.jobjourney/jobs.db
  • agent heartbeat: ~/.jobjourney/agent-heartbeat.json

The database stores:

  • discovered jobs
  • scrape/discovery runs
  • schedules

🛠 Key Tools

This MCP exposes a broad JobJourney toolset. For local discovery, these are the most important ones:

Tool What it does
discover_jobs Run the canonical multi-source discovery engine and store results locally
search_jobs Query jobs already stored in local SQLite
schedule_discovery Schedule recurring local discovery runs
get_latest_discovery_report Show the latest discovery batch summary
scrape_jobs Legacy one-off local scrape path
login_jobsite Save browser login state for supported sites
check_login_status Confirm browser login state

And the broader platform also includes:

  • job tracking
  • AI fit evaluation
  • cover letter and CV generation
  • mock interviews
  • dashboard analytics
  • coffee chat networking
  • profile and document management

🏗 Architecture

src/
  index.ts                # FastMCP server entrypoint
  tools/                  # MCP tool registration
  discovery/              # Canonical local discovery engine
    core/                 # orchestration and job types
    sources/              # linkedin guest, seek browser, planned sources
    ats/                  # ATS detection and supported crawlers
    analysis/             # salary, tech stack, PR, experience enrichment
    fallback/             # optional company career-page probing
    storage/              # discovery persistence adapters
    parity/               # TS vs Python parity harness
  scraper/                # legacy browser scraper layer, being phased down
  storage/sqlite/         # SQLite repos and migrations
  agent/                  # background scheduling agent
  config/                 # path and runtime config

Built with FastMCP, TypeScript, Zod, Playwright, and SQLite.


⚙️ Environment Variables

Variable Description Default
JOBJOURNEY_API_URL JobJourney backend base URL https://server.jobjourney.me
JOBJOURNEY_API_KEY API key for backend-authenticated features -
TRANSPORT MCP transport: stdio or httpStream stdio
PORT HTTP port when TRANSPORT=httpStream 8080

🧪 Development

git clone https://github.com/Rorogogogo/jobjourney-claude-plugin.git
cd jobjourney-claude-plugin
npm install
npx playwright install chromium
npm run build
npm test
npm run typecheck

Useful local commands:

npm run start
npm run agent
npm run parity:discovery
npm run parity:live-smoke

🤝 Contributing

Contributions are welcome. Useful contribution areas right now:

  • tightening the canonical src/discovery architecture
  • implementing indeed and jora
  • improving live parity coverage
  • reducing remaining legacy surface in src/scraper

Standard flow:

git checkout -b feature/my-change
npm test
npm run typecheck
git commit -m "feat: my change"

🔗 Links


📄 License

AGPL-3.0 + Commercial © JobJourney

License

This project is dual-licensed:

  • 🆓 AGPL-3.0 — free for personal use, open-source forks, and projects themselves open-sourced under a compatible license. See LICENSE.
  • 💼 Commercial license — required for closed-source products, proprietary internal tools, or paid / hosted services where AGPL-3.0's copyleft and network-use obligations don't fit. See COMMERCIAL.md.

Do I need a commercial license?

Use case License
Personal use / running locally AGPL-3.0 (free)
Forking and publishing under AGPL-3.0 AGPL-3.0 (free)
Bundling into a closed-source product Commercial
Hosting a modified version as a SaaS without publishing source Commercial
Internal company tool not open-sourced Commercial

For a commercial license, contact Robert Wang at xwang.robert@gmail.com — see COMMERCIAL.md for what to include in your request.

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选