Skip to content
VS Code

llmconveyors for VS Code

io.github.ebenezer-isaac/llmconveyors

53 tools for LLM Conveyors: job hunting, B2B sales, ATS scoring, resume tools.

client:VS Code transport:stdio runtime:npm

Install llmconveyors in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "llmc-api-key",
      "description": "LLMC_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "llmconveyors": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "llmconveyors-mcp"
      ],
      "env": {
        "LLMC_API_KEY": "${input:llmc-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

llmconveyors in other clients