Career Intelligence MCP

Career Intelligence MCP

An AI-powered career intelligence platform for job seekers that parses resumes, scrapes and scores job listings, analyzes skill gaps, and prepares for interviews.

Category
访问服务器

README

Career Intelligence MCP

An AI-powered career intelligence platform for job seekers. Parse resumes, scrape and score job listings, analyze skill gaps, and prepare for interviews.

Features

  • Resume Parsing — Paste your resume text, get structured data (name, skills, experience, education)
  • Resume Improvement — Get AI suggestions to strengthen your resume for a target role
  • Job Scraping — Paste any job listing URL (LinkedIn, Indeed, Glassdoor, etc.) and get structured data
  • Job Scoring — Compare multiple jobs against your resume and see match scores
  • Job Comparison — Side-by-side comparison of 2-3 jobs (salary, skills, risks, recommendation)
  • Skill Gap Analysis — Identify missing skills for a target role with a learning roadmap
  • Career Path — Get a career progression plan based on your resume
  • Salary Estimation — Estimate salary ranges based on skills, experience, and location
  • Interview Questions — Generate technical, behavioral, and follow-up questions for any role
  • Market Analysis — Analyze hiring trends and skill demand

Requirements

  • Python 3.12+
  • An OpenRouter API key (free tier works)

Setup

1. Clone and install dependencies

git clone <your-repo-url>
cd mcp-intel
python -m venv .venv
source .venv/bin/activate  # On Windows: .venv\Scripts\activate
pip install -e .

2. Configure environment

cp .env.example .env
# Edit .env with your settings:
# LLM_API_KEY=your_openrouter_api_key
# DATABASE_URL is already set to use SQLite (career_intel.db)

3. Get an OpenRouter API key

  1. Sign up at openrouter.ai
  2. Go to Keys → Create key
  3. Add to .env as LLM_API_KEY=sk-or-...

Default model is deepseek/deepseek-chat (free tier, works well). You can change LLM_MODEL in .env to any OpenRouter model.

4. Run the app

python -m app.main
# Database (career_intel.db) auto-creates on first run

That's it — no database setup needed. The SQLite file (career_intel.db) is created automatically.


Deployment Options

Choose the option that fits your setup.

Option 1: Local HTTP Server (Development)

The server runs as an HTTP server on localhost:8000. Connect to it using any HTTP-capable MCP client.

python -m app.main
# Server starts on http://0.0.0.0:8000

Option 2: Stdio Mode (Direct MCP Connection)

Run as a stdio MCP server. This connects directly to an MCP client like Claude Desktop without needing HTTP.

python -m app.main --transport stdio

For Claude Desktop, add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "career-intel": {
      "command": "/full/path/to/venv/bin/python",
      "args": ["-m", "app.main", "--transport", "stdio"]
    }
  }
}

Setup steps:

  1. Run the server in stdio mode or use Claude Desktop config above
  2. Restart Claude Desktop

Option 3: Cloudflare Tunnel (Remote Access)

Expose your locally-running server to the internet securely using Cloudflare Tunnel — no public IP, account, or firewall needed.

Step 1: Install cloudflared

# macOS
brew install cloudflare/cloudflare/cloudflared

# Linux
curl -L https://github.com/cloudflare/cloudflared/releases/latest/download/cloudflared-linux-amd64 -o cloudflared
chmod +x cloudflared
sudo mv cloudflared /usr/local/bin/

Step 2: Start the app

python -m app.main

Step 3: Start the tunnel

cloudflared access --url http://localhost:8000
# You'll see output like:
# Your tunnel Qo7xG@example.app.link

Step 4: Connect Claude Desktop

{
  "mcpServers": {
    "career-intel": {
      "command": "cloudflared",
      "args": ["access", "--url", "http://localhost:8000"]
    }
  }
}

Setup steps:

  1. Install cloudflared
  2. Start the app (python -m app.main)
  3. Start cloudflared tunnel
  4. Add to Claude Desktop config
  5. Restart Claude Desktop

Option 4: ngrok Tunnel (Remote Access)

Expose your locally-running server via ngrok. Requires an ngrok account (free tier works).

Step 1: Install ngrok

# macOS
brew install ngrok

# Linux
curl -s https://ngrok-agent.s3.amazonaws.com/ngrok.asc | sudo tee /etc/apt/trusted.gpg.d/ngrok.asc >/dev/null
echo "deb https://ngrok-agent.s3.amazonaws.com buster main" | sudo tee /etc/apt/sources.list.d/ngrok.list
sudo apt update && sudo apt install ngrok

Step 2: Sign up and get your authtoken

  1. Sign up at ngrok.com
  2. Copy your authtoken from the dashboard
  3. Configure it: ngrok config add-authtoken YOUR_TOKEN

Step 3: Start the app

python -m app.main

Step 4: Start ngrok

ngrok http 8000
# You'll see output like:
# Forwarding  https://abc123.ngrok.io -> http://localhost:8000

Step 5: Connect Claude Desktop

{
  "mcpServers": {
    "career-intel": {
      "command": "ngrok",
      "args": ["http", "--domain", "your-ngrok-subdomain.ngrok.io", "8000"]
    }
  }
}

Setup steps:

  1. Install ngrok and create an account
  2. Add your authtoken: ngrok config add-authtoken YOUR_TOKEN
  3. Start the app (python -m app.main)
  4. Start ngrok (ngrok http 8000)
  5. Add to Claude Desktop config
  6. Restart Claude Desktop

Connecting to Claude Desktop

After setting up your preferred deployment option, add to Claude Desktop:

{
  "mcpServers": {
    "career-intel": {
      "command": "/full/path/to/venv/bin/python",
      "args": ["-m", "app.main", "--transport", "stdio"]
    }
  }
}

Or if using a tunnel (cloudflared or ngrok):

{
  "mcpServers": {
    "career-intel": {
      "command": "cloudflared",
      "args": ["access", "--url", "http://localhost:8000"]
    }
  }
}

Then restart Claude Desktop.


Usage Examples

Parse your resume

User: Parse my resume:
[Full resume text pasted here]

Assistant calls: parse_resume(raw_text="...")
Returns: { name, email, skills, experience, education, ... }

Scrape a job listing

User: Scrape this job: https://www.linkedin.com/jobs/view/12345

Assistant calls: scrape_job_listing(url="...")
Returns: { title, company, location, description, salary_min, salary_max, ... }

Score jobs against your resume

User: Score these jobs for me [paste resume] [paste job URLs]

Assistant calls:
1. scrape_job_listing(url="...") — for each URL
2. score_jobs_for_candidate(resume_text="...", jobs=[...])
Returns: [{ job, score (0-100), match_reasons, weaknesses }, ...]

Compare jobs

User: Compare these 2 jobs [paste job details]

Assistant calls: compare_jobs(jobs=[...])
Returns: { strengths, risks, salary_comparison, skill_overlap, overall_recommendation }

Prepare for interviews

User: Generate interview questions for this job [paste job description]

Assistant calls: generate_interview_questions(job_description="...")
Returns: { technical: [...], behavioral: [...], follow_up: [...] }

Analyze skill gaps

User: What skills am I missing for a Staff Engineer role? [paste resume]

Assistant calls: skill_gap_analysis(resume_text="...", target_role="Staff Engineer")
Returns: { current_skills, missing_skills, roadmap: [{ skill, resources, timeline, priority }] }

Environment Variables

Variable Default Description
DATABASE_URL sqlite+aiosqlite:///./career_intel.db SQLite database path
LLM_API_KEY (empty) OpenRouter API key
LLM_MODEL deepseek/deepseek-chat OpenRouter model to use
LLM_BASE_URL https://openrouter.ai/api/v1 OpenRouter base URL
LOG_LEVEL INFO Logging level

API Endpoints

  • GET /health — Health check. Returns database and LLM status.

Architecture

  • FastMCP — Server framework
  • SQLAlchemy (async) — Database ORM
  • SQLite — Local database (no server setup)
  • OpenRouter — LLM calls (DeepSeek, Claude, etc.)
  • httpx + BeautifulSoup — Job listing scraping

推荐服务器

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 模型以安全和受控的方式获取实时的网络信息。

官方
精选