github-resume-assistant

github-resume-assistant

An MCP server that connects Claude to your real GitHub activity and tells you what to build and ship publicly to make your resume credible.

Category
访问服务器

README

GitHub Resume Assistant

CI

An MCP server that connects Claude to your real GitHub activity and tells you what to build and ship publicly to make your resume credible — grounded in your actual contribution history, not generic advice.

Most resume tools critique the words on the page. This one looks at what you've actually built (and haven't), finds the gap between your resume's claims and your public GitHub, and prescribes a ranked plan of shippable projects to close it.

Why it exists

Engineers improving their resume today paste it into ChatGPT and wing it. ChatGPT can't see your real work and can't tell you what to build. This tool can — by bridging Claude to the GitHub API. Full rationale in docs/PRODUCT.md.

The three tools

Tool What it does
fetch_github_repos() Pulls your GitHub profile, repos, stars, languages, recency.
analyze_resume(text) Finds which resume claims your public GitHub does / doesn't back up.
suggest_projects() Prescribes a ranked 30-day plan of projects to prove your strongest claims.

Status

v1.0 — shipped. All three tools work end-to-end, and the repo is production- polished: retry/backoff and rate-limit handling on the GitHub API, config via env vars, a test suite passing in CI (ruff + mypy + pytest), and a Docker image that builds. See docs/ROADMAP.md for what each version includes and docs/WRITEUP.md for the short story of why it's built this way.

Shipped: v0.1 walking skeleton (fetch_github_repos), v0.2 the gap finder (analyze_resume), v0.3 the prescription (suggest_projects), and v1.0 production polish.

What analyze_resume does (v0.2)

Given your resume text and a GitHub username, it:

  1. Extracts the strongest, most concrete claims from the resume (via Claude).
  2. Cross-references each claim against your real public repositories.
  3. Returns a gap report — which claims have public GitHub evidence and which are gaps to close.

If your public GitHub is empty or thin — the common case when your real work lives in private company repos — it degrades gracefully and frames every claim as a gap to close, never "nothing found".

Results are cached in SQLite so re-analyzing the same resume doesn't re-hit the Anthropic API. In Claude Desktop, ask: "analyze my resume against my GitHub" and paste your resume + username.

What suggest_projects does (v0.3 — the star tool)

Given your resume text and a GitHub username, it builds the same gap report as analyze_resume, then prescribes what to build next:

  1. Reuses the gap report (which claims your public GitHub does / doesn't back up).
  2. Asks Claude for candidate shippable projects grounded in that report.
  3. Ranks them in pure core/gaps first, quicker wins earlier — into a 30-day plan.

Each suggestion is tied to a concrete resume claim it would prove, sized ("a weekend" / "a week"), and scoped (what to deliberately skip so it ships). The empty-GitHub case is the main case: instead of "nothing to show", it prescribes starter projects that build public credibility from scratch. Candidates are cached in SQLite so re-running the same gap report doesn't re-hit the Anthropic API.

In Claude Desktop, ask: "what should I build to make my resume credible?" and paste your resume + username.

The web app (v2.0 — no install)

The same engine, a second front door. Job-seekers don't install MCP servers, so resume_assistant/web/ is a thin Flask adapter over the identical core/ logic (build_gap_report + build_project_plan): paste your resume, type a GitHub username, and get the gap report + ranked 30-day plan as a web page. The empty-GitHub case is the main case — it renders a build plan, not "nothing found".

Run it locally:

# after `pip install -e ".[dev]"` and setting ANTHROPIC_API_KEY (see below)
resume-assistant-web
# then open http://127.0.0.1:5000

# if `resume-assistant-web` isn't found (its Scripts dir isn't on PATH,
# common on Windows), run it as a module instead:
python -m resume_assistant.web.app

ANTHROPIC_API_KEY is required; GITHUB_TOKEN is optional (a higher GitHub rate limit). Each claim is graded against your real repo code — parsed dependency manifests, the recursive file tree, language breakdown, and README — and earns one of three honest verdicts: backed (public code proves it, citing the specific files), not shown yet (a gap to close), or not verifiable from public code (claims like private/enterprise usage, traffic, or latency that public code structurally can't prove).

Rate limits without a token. Grounding reads each repo's code, so analysis makes several GitHub calls per repo. Unauthenticated, a profile with many repos can exhaust the rate limit — you'll get a friendly "set a GITHUB_TOKEN" message rather than a crash. Setting a token raises the limit dramatically.

Tech stack

  • Python 3.11+ with the official mcp library (and Flask for the v2.0 web app)
  • GitHub REST API (requests)
  • Anthropic API (latest Claude models — claude-sonnet-5 / claude-opus-4-8)
  • SQLite for caching (from v0.2)
  • pytest for testing, ruff + mypy for quality

Getting started (dev)

# 1. Create and activate a virtualenv
python -m venv .venv && source .venv/bin/activate   # (Windows: .venv\Scripts\activate)

# 2. Install the package with dev/test extras
pip install -e ".[dev]"

# 3. Configure secrets (see note below)
cp .env.example .env      # GITHUB_TOKEN optional; ANTHROPIC_API_KEY required for analyze_resume

# 4. Run tests
pytest

GITHUB_TOKEN is optional. The GitHub REST API works unauthenticated, just with a lower rate limit. Set a token (a fine-grained token with public read access is enough) to avoid hitting that limit.

ANTHROPIC_API_KEY is required for analyze_resume. ANTHROPIC_MODEL defaults to claude-sonnet-5 (swappable). CACHE_PATH is optional — the SQLite cache defaults to ./.cache/resume_assistant.db.

Registering the server in Claude Desktop

The server speaks MCP over stdio. Add it to your Claude Desktop config file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "github-resume-assistant": {
      "command": "/absolute/path/to/.venv/bin/resume-assistant",
      "env": {
        "GITHUB_TOKEN": "your_github_token_here",
        "ANTHROPIC_API_KEY": "your_anthropic_key_here"
      }
    }
  }
}

resume-assistant is the console script installed by pip install -e ".[dev]". On Windows the path is ...\.venv\Scripts\resume-assistant.exe. If you'd rather not rely on the script, use your interpreter directly instead:

{
  "mcpServers": {
    "github-resume-assistant": {
      "command": "/absolute/path/to/.venv/bin/python",
      "args": ["-m", "resume_assistant.server.app"],
      "env": {
        "GITHUB_TOKEN": "your_github_token_here",
        "ANTHROPIC_API_KEY": "your_anthropic_key_here"
      }
    }
  }
}

Fully quit and reopen Claude Desktop, then ask: "show me the GitHub repos for octocat" — Claude will call fetch_github_repos and return the real data.

Run with Docker

Prefer not to manage a local Python environment? Build the image and run the server in a container. Secrets are passed at runtime — never baked into the image.

# Build
docker build -t resume-assistant .

# Run (the server speaks MCP over stdio, so keep STDIN open with -i)
docker run -i --rm \
  -e GITHUB_TOKEN=your_github_token_here \
  -e ANTHROPIC_API_KEY=your_anthropic_key_here \
  resume-assistant

The SQLite cache lives inside the container and is discarded when it exits (--rm). To persist it across runs, mount a volume and point CACHE_PATH at it, e.g. -v resume-cache:/app/.cache -e CACHE_PATH=/app/.cache/resume.db.

To use the container from Claude Desktop, set the command to docker:

{
  "mcpServers": {
    "github-resume-assistant": {
      "command": "docker",
      "args": [
        "run", "-i", "--rm",
        "-e", "GITHUB_TOKEN",
        "-e", "ANTHROPIC_API_KEY",
        "resume-assistant"
      ],
      "env": {
        "GITHUB_TOKEN": "your_github_token_here",
        "ANTHROPIC_API_KEY": "your_anthropic_key_here"
      }
    }
  }
}

Passing -e GITHUB_TOKEN (no =value) forwards the variable from the env block above into the container, keeping the token out of the args list.

For contributors (and future you)

This repo is built with a strict, self-enforcing workflow. If you use Claude Code here, it reads CLAUDE.md and follows a skill chain:

/plan-first → /implement → /test → /self-review → /commit-push → /open-pr → /review-pr

The rule: no code before the approach is validated. See the docs:

License

MIT — see LICENSE.

推荐服务器

Baidu Map

Baidu Map

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

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

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

官方
精选
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

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

官方
精选
本地
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

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

官方
精选
本地
TypeScript
VeyraX

VeyraX

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

官方
精选
本地
Kagi MCP Server

Kagi MCP Server

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

官方
精选
Python
graphlit-mcp-server

graphlit-mcp-server

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

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

官方
精选