Skip to content
VS Code

proctor for VS Code

com.pulsemcp/proctor

MCP server for running Proctor exams against MCP servers with exam execution and result management.

client:VS Code transport:stdio runtime:npm

Install proctor in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "proctor-api-key",
      "description": "PROCTOR_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "proctor-api-url",
      "description": "PROCTOR_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "tool-groups",
      "description": "TOOL_GROUPS",
      "password": true
    }
  ],
  "servers": {
    "proctor": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "proctor-mcp-server"
      ],
      "env": {
        "PROCTOR_API_KEY": "${input:proctor-api-key}",
        "PROCTOR_API_URL": "${input:proctor-api-url}",
        "TOOL_GROUPS": "${input:tool-groups}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

proctor in other clients