mcp server for VS Code
io.github.klevercv/mcp-server
Generate tailored resumes via AI agents using KlevrCV. Returns a signed PDF download URL.
client:VS Code
transport:stdio
runtime:npm
Install mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "klevercv-api-key",
"description": "KLEVERCV_API_KEY",
"password": true
}
],
"servers": {
"mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@klevercv/mcp-server"
],
"env": {
"KLEVERCV_API_KEY": "${input:klevercv-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs