Skip to content
VS Code

rq scan for VS Code

io.github.recerqa/rq-scan

MCP Server for RQ-SCAN - AI-powered document OCR and data extraction platform

client:VS Code transport:stdio runtime:npm

Install rq scan in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "rqscan-api-key",
      "description": "RQSCAN_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "rqscan-organization-id",
      "description": "RQSCAN_ORGANIZATION_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "rqscan-api-url",
      "description": "RQSCAN_API_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "rqscan-workspace-id",
      "description": "RQSCAN_WORKSPACE_ID",
      "password": true
    }
  ],
  "servers": {
    "rq-scan": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "rq-scan-mcp"
      ],
      "env": {
        "RQSCAN_API_KEY": "${input:rqscan-api-key}",
        "RQSCAN_ORGANIZATION_ID": "${input:rqscan-organization-id}",
        "RQSCAN_API_URL": "${input:rqscan-api-url}",
        "RQSCAN_WORKSPACE_ID": "${input:rqscan-workspace-id}"
      }
    }
  }
}

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

rq scan in other clients