Etix event discovery for Claude — search events, venues & performers and fetch event details
Etix event discovery for Claude — search events, venues & performers and fetch event details
etix-mcp is a well-structured event discovery MCP server with solid security practices. Authentication is handled via the user's existing signed-in browser session (proxied through fetchproxy), which is appropriate for its design. Code quality is good with proper error handling, input validation through schema parsing, and no evident malicious patterns. Permissions are appropriately scoped to network HTTP calls and environment variable access, matching the server's stated purpose of querying Etix's consumer API. Supply chain analysis found 2 known vulnerabilities in dependencies (0 critical, 1 high severity). Package verification found 1 issue.
7 files analyzed · 7 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: ETIX_WS_PORT
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-chrischall-etix-mcp": {
"env": {
"ETIX_WS_PORT": "your-etix-ws-port-here"
},
"args": [
"-y",
"etix-mcp"
],
"command": "npx"
}
}
}From the project's GitHub README.
Etix event discovery as an MCP server for Claude — search events, venues, and performers and pull full event/venue details via natural language.
⚠️ Etix does not publish a public consumer API, and its consumer site sits behind a DataDome bot-wall. This server reads the same
/ticket/api/online/...endpoints and server-rendered pages that etix.com itself uses, routed through your own signed-in browser tab via the fetchproxy extension. Every request acts on behalf of your existing session — your cookies, your TLS, your JS context — exactly as if you'd browsed it yourself. No Etix account is required; this is public discovery data. Use at your own discretion.
| Tool | Purpose |
|---|---|
etix_search | Search events, venues, and performers by keyword. Returns a few top matches per category, each with its id and canonical etix.com URL. |
etix_get_event | Full record for an event/performance by event_id — name, date/time, venue (with address + coordinates), organizer, ticket price range and the individual priced offer levels. |
etix_get_venue | A venue by venue_id — name, organizer, full address, and the list of upcoming events at that venue. |
etix_find_location | Resolve a city name or postal code to coordinates plus normalized city/state — a building block for location-based event browsing. |
etix_healthcheck | End-to-end bridge check — round-trips /robots.txt and reports which hop failed (bridge down vs. extension not connected vs. DataDome challenge on your tab). Call when other tools fail. |
Etix fronts its consumer site with a DataDome interstitial that a server-side fetch can't clear, so etix-mcp routes every request through your signed-in, already-cleared etix.com tab via the shared fetchproxy bridge (WebSocket on 127.0.0.1:37149). etix_search reads the clean search/suggest JSON endpoint; etix_get_event and etix_get_venue parse the server-rendered performance/venue pages (schema.org JSON-LD + microdata). See docs/ETIX-API.md for the verified endpoint shapes.
See SKILL.md for full install steps: add the server to your MCP config, install the shared fetchproxy extension, open etix.com, and approve the one-time pairing. Then run etix_healthcheck.
npm ci
npm run build # tsc --noEmit + esbuild bundle → dist/bundle.js
npm test # vitest
By using this MCP server, you acknowledge that it uses your own etix.com session via the fetchproxy extension, that Etix offers no public consumer API (so the underlying endpoints may change at any time), and that this is an unofficial, AI-developed project with no affiliation to Etix. Use at your own discretion, consistent with Etix's Terms of Use.
MIT — developed and maintained by AI (Claude Code).
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Web content fetching and conversion for efficient LLM usage
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.