Skip to content
VS Code

ParseRelay for VS Code

io.github.parserelay/mcp

Parse a document into structured, confidence-scored fields. Bring your own model, pay per scan.

client:VS Code transport:stdio runtime:npm

Install ParseRelay in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "parserelay-api-key",
      "description": "PARSERELAY_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "parserelay-base-url",
      "description": "PARSERELAY_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@parserelay/mcp"
      ],
      "env": {
        "PARSERELAY_API_KEY": "${input:parserelay-api-key}",
        "PARSERELAY_BASE_URL": "${input:parserelay-base-url}"
      }
    }
  }
}

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

ParseRelay in other clients