Skip to content
VS Code

accessoticketing mcp for VS Code

io.github.chrischall/accessoticketing-mcp

Read accesso mobile ticket links: orders, admissions, barcodes and Google Wallet passes.

client:VS Code transport:stdio runtime:npm

Install accessoticketing mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "accesso-ticket-url",
      "description": "ACCESSO_TICKET_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "accesso-output-dir",
      "description": "ACCESSO_OUTPUT_DIR",
      "password": true
    }
  ],
  "servers": {
    "accessoticketing-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@chrischall/accessoticketing-mcp"
      ],
      "env": {
        "ACCESSO_TICKET_URL": "${input:accesso-ticket-url}",
        "ACCESSO_OUTPUT_DIR": "${input:accesso-output-dir}"
      }
    }
  }
}

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

accessoticketing mcp in other clients