Skip to content
VS Code

starlog for VS Code

io.github.starloghq/starlog

Vet a package (CVEs, license, maintenance) before your AI agent uses it, plus capability discovery.

client:VS Code transport:stdio runtime:npm

Install starlog in VS Code

.vscode/mcp.json

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

starlog in other clients