Skip to content
VS Code

Parseur for VS Code

io.github.parseur/parseur-py

Manage Parseur.com mailboxes, parser fields, documents, exports and webhooks.

client:VS Code transport:stdio runtime:pypi

Install Parseur in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "parseur-api-key",
      "description": "PARSEUR_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "parseur-api-base",
      "description": "PARSEUR_API_BASE",
      "password": true
    }
  ],
  "servers": {
    "parseur-py": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "parseur-py"
      ],
      "env": {
        "PARSEUR_API_KEY": "${input:parseur-api-key}",
        "PARSEUR_API_BASE": "${input:parseur-api-base}"
      }
    }
  }
}

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

Parseur in other clients