matchcv for VS Code
io.github.18boys/matchcv
ATS resume checking, job description analysis, and AI resume tailoring powered by MatchCV.
client:VS Code
transport:stdio
runtime:npm
Install matchcv in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "matchcv-base-url",
"description": "MATCHCV_BASE_URL",
"password": true
}
],
"servers": {
"matchcv": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"matchcv-mcp"
],
"env": {
"MATCHCV_BASE_URL": "${input:matchcv-base-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs