Skip to content
VS Code

parser for VS Code

com.wrapper-agency.parsedoc/parser

Parse receipts & invoices into structured JSON. Pay per call in USDC (x402 on Base), no API key.

client:VS Code transport:stdio runtime:npm

Install parser in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "x402-private-key",
      "description": "X402_PRIVATE_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "parsedoc-url",
      "description": "PARSEDOC_URL",
      "password": true
    }
  ],
  "servers": {
    "parser": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "parsedoc-mcp"
      ],
      "env": {
        "X402_PRIVATE_KEY": "${input:x402-private-key}",
        "PARSEDOC_URL": "${input:parsedoc-url}"
      }
    }
  }
}

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

parser in other clients