plugins marketplace
← All plugins

eventbrite-mcp

v0.1.1

MCP server for Eventbrite — your tickets and orders, organizer data, and public event discovery

Claude Code1 skill1 MCP serverstdio

by Chris HallMIT0updated 2 days ago

Source

git clone https://github.com/chrischall/eventbrite-mcp

Clone the source, then follow the repository's marketplace instructions for your runtime. The repository root is the plugin root.

Layout

eventbrite-mcp/
├── .claude-plugin/plugin.json
├── skills/eventbrite/SKILL.md
└── .mcp.json

Skills1

eventbriteskills/eventbrite/SKILL.md

Query eventbrite.com from a shell — your tickets/orders, your organizations' events and attendees via the documented token API (curl), and public event discovery/search via the fpx browser bridge (the search API is WAF-walled and absent from the documented API). Use when you want Eventbrite data without an MCP server, in a script, or one-shot.

MCP servers1

eventbritestdio
command
node
args
${CLAUDE_PLUGIN_ROOT}/dist/index.js
env.EVENTBRITE_TOKEN
${EVENTBRITE_TOKEN}

MCP configuration uses runtime-provided plugin path placeholders such as ${PLUGIN_ROOT} or ${CLAUDE_PLUGIN_ROOT}. Review the manifest for the runtime-specific expansion rules.

Manifests1

.claude-plugin/plugin.json
{
  "name": "eventbrite-mcp",
  "displayName": "Eventbrite",
  "version": "0.1.1",
  "description": "MCP server for Eventbrite — your tickets and orders, organizer data, and public event discovery",
  "author": {
    "name": "Chris Hall",
    "email": "chris.c.hall@gmail.com"
  },
  "homepage": "https://github.com/chrischall/eventbrite-mcp",
  "repository": "https://github.com/chrischall/eventbrite-mcp",
  "license": "MIT",
  "keywords": [
    "eventbrite",
    "events",
    "tickets",
    "mcp"
  ],
  "skills": "./skills/",
  "mcp": "./.mcp.json"
}