Skip to content
VS Code

exam sheet for VS Code

io.github.giuliobmb/exam-sheet

Generate a timed exam on any topic and take it in an interactive exam sheet with live grading.

client:VS Code transport:stdio runtime:npm

Install exam sheet in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "anthropic-api-key",
      "description": "ANTHROPIC_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "exam-sheet": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@giuliobmb/exam-sheet-mcp"
      ],
      "env": {
        "ANTHROPIC_API_KEY": "${input:anthropic-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

exam sheet in other clients