formacv for VS Code
io.github.rocketech-software-development/formacv
FormaCV MCP server for AI-powered CV formatting, anonymization, tailoring, and ATS push-back.
client:VS Code
transport:stdio
runtime:npm
Install formacv in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "formacv-api-key",
"description": "FORMACV_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "formacv-server-url",
"description": "FORMACV_SERVER_URL",
"password": true
}
],
"servers": {
"formacv": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@formacv/mcp"
],
"env": {
"FORMACV_API_KEY": "${input:formacv-api-key}",
"FORMACV_SERVER_URL": "${input:formacv-server-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs