npm matchcv-mcpstdioMITupdated 8d ago
Resume tools for MCP clients. Check a resume against ATS rules, parse a job description into structured requirements, get rewrite-level suggestions, and generate a fully tailored resume with a shareable preview link — all from inside Claude, Cursor, Codex, or any other MCP-compatible client.
matchcv 能做什么?
MatchCV MCP Server
Resume tools for MCP clients. Check a resume against ATS rules, parse a job description into structured requirements, get rewrite-level suggestions, and generate a fully tailored resume with a shareable preview link — all from inside Claude, Cursor, Codex, or any other MCP-compatible client.
Powered by MatchCV · MCP docs · Get started free
Tools
| Tool | What it does |
|---|---|
ats_check |
Scores resume text 0–100 for ATS compatibility, with a recruiter take, prioritized issues and fixes, and detected strengths |
analyze_job_description |
Turns a job posting into structured JSON: title, company, seniority, industry, must-have / nice-to-have keywords, responsibilities |
optimize_resume |
Prioritized improvement suggestions with example rewrites, optionally targeted at a role, a JD, and specific missing keywords |
roast_resume |
Blunt recruiter-style critique plus an ATS score, returned as a public shareable report link |
extract_resume_text |
Reads a local PDF/DOC/DOCX/TXT resume and returns plain text, optionally AI-parsed into structured JSON |
tailor_resume |
Full pipeline — analyze the JD, rewrite the resume for that role, return the tailored JSON plus a preview page you can open and download as PDF |
Install
Requires Node.js 20+. No API key and no account are needed to start.
Claude Desktop / Claude Code
Add to your MCP config (claude_desktop_config.json, or run claude mcp add):
{
"mcpServers": {
"matchcv": {
"command": "npx",
"args": ["-y", "matchcv-mcp"]
}
}
}
Cursor
~/.cursor/mcp.json (or .cursor/mcp.json in a project):
{
"mcpServers": {
"matchcv": {
"command": "npx",
"args": ["-y", "matchcv-mcp"]
}
}
}
Codex CLI
~/.codex/config.toml:
[mcp_servers.matchcv]
command = "npx"
args = ["-y", "matchcv-mcp"]
Any other MCP client
The server speaks MCP over stdio. Run it directly with:
npx -y matchcv-mcp
Example prompts
- "Read
~/Documents/resume.pdfand tell me how it scores against ATS." - "Here's a job posting — what keywords is my resume missing?"
- "Roast my resume, I want the honest version."
- "Tailor my resume to this job description and give me the preview link."
Usage limits
The tools call MatchCV's public endpoints, so free usage is capped per day, per IP address:
| Free (no account) | Signed in | Pro | |
|---|---|---|---|
ats_check, analyze_job_description, optimize_resume, roast_resume, structured parsing |
3/day | 10/day | Unlimited |
tailor_resume |
1/day | 3/day | Unlimited |
Plain text extraction (extract_resume_text without structured: true) is unlimited — it runs no AI.
Quota errors come back as a readable message telling you how to raise the limit. See matchcv.co/pricing.
Configuration
| Environment variable | Default | Purpose |
|---|---|---|
MATCHCV_BASE_URL |
https://matchcv.co |
API origin. Only needed to point at a development deployment. |
Privacy
This server holds no credentials and stores nothing locally. Resume and job description text is sent to the
MatchCV API over HTTPS for processing. roast_resume and tailor_resume create a page at an unguessable
public URL so you can open and share the result; the other tools store nothing. See the
privacy policy.
Development
npm install
npm run build
node dist/index.js
Point it at a local MatchCV instance with MATCHCV_BASE_URL=http://localhost:3000.
License
MIT — see LICENSE.
安装
把 matchcv 添加到你的客户端。选择你正在使用的那个。
claude mcp add matchcv-mcp -- npx -y matchcv-mcpcodex mcp add matchcv-mcp -- npx -y matchcv-mcpamp mcp add matchcv-mcp -- npx -y matchcv-mcp{
"mcpServers": {
"matchcv-mcp": {
"command": "npx",
"args": [
"-y",
"matchcv-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"matchcv-mcp": {
"command": "npx",
"args": [
"-y",
"matchcv-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"matchcv-mcp","command":"npx","args":["-y","matchcv-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"matchcv-mcp": {
"command": "npx",
"args": [
"-y",
"matchcv-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"matchcv-mcp": {
"command": "npx",
"args": [
"-y",
"matchcv-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"matchcv-mcp": {
"command": "npx",
"args": [
"-y",
"matchcv-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"matchcv-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"matchcv-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"matchcv-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"matchcv-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y matchcv-mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
6 个工具
matchcv 向已连接的智能体提供 6 个工具。
- ats_check
- Scores resume text 0–100 for ATS compatibility, with a recruiter take, prioritized issues and fixes, and detected strengths
- analyze_job_description
- Turns a job posting into structured JSON: title, company, seniority, industry, must-have / nice-to-have keywords, responsibilities
- optimize_resume
- Prioritized improvement suggestions with example rewrites, optionally targeted at a role, a JD, and specific missing keywords
- roast_resume
- Blunt recruiter-style critique plus an ATS score, returned as a public shareable report link
- extract_resume_text
- Reads a local PDF/DOC/DOCX/TXT resume and returns plain text, optionally AI-parsed into structured JSON
- tailor_resume
- Full pipeline — analyze the JD, rewrite the resume for that role, return the tailored JSON plus a preview page you can open and download as PDF
评分
72 / 100
良好
- 文档22/25
- 维护19/25
- 可信度13/20
- 能力6/15
- 安装体验12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 0 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 6 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
版本历史
| 版本 | 发布于 |
|---|---|
| 0.1.1最新 | 2026年8月31日 |