Skip to content
VS Code

eventbrite mcp for VS Code

io.github.chrischall/eventbrite-mcp

Eventbrite for Claude — your tickets/orders, organizer data, and public event discovery

client:VS Code transport:stdio runtime:npm

Install eventbrite mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "eventbrite-token",
      "description": "EVENTBRITE_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "eventbrite-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@chrischall/eventbrite-mcp"
      ],
      "env": {
        "EVENTBRITE_TOKEN": "${input:eventbrite-token}"
      }
    }
  }
}

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

eventbrite mcp in other clients