hh mcp for VS Code
io.github.theyahia/hh-mcp
MCP server for hh.ru jobs API — vacancy search, salary stats, employers, regions. Public endpoints,
client:VS Code
transport:stdio
runtime:npm
Install hh mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "api-key",
"description": "API_KEY",
"password": true
}
],
"servers": {
"hh-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@theyahia/hh-mcp"
],
"env": {
"API_KEY": "${input: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