MCP: Eventbrite Events Intel - Discovery, Prices, Organizers avatar

MCP: Eventbrite Events Intel - Discovery, Prices, Organizers

Pricing

$5.00 / 1,000 mcp tool calls

Go to Apify Store
MCP: Eventbrite Events Intel - Discovery, Prices, Organizers

MCP: Eventbrite Events Intel - Discovery, Prices, Organizers

MCP server for eventbrite-events-intel. AI-agent tools: discover_events, get_event_details (price tiers, organizer, performers), and get_organizer_events - the event-discovery layer Eventbrite removed from its API in 2020. x402 (USDC on Base) and Skyfire ready. For event marketers and sponsors.

Pricing

$5.00 / 1,000 mcp tool calls

Rating

0.0

(0)

Developer

Seibs.co

Seibs.co

Maintained by Community

Actor stats

0

Bookmarked

1

Total users

0

Monthly active users

4 days ago

Last modified

Share

MCP: Eventbrite Events Intel

The Model Context Protocol server for eventbrite-events-intel - give your AI agent the Eventbrite event-discovery layer the API can't.

Eventbrite removed its public Event Search API in 2020; cross-organizer event discovery is impossible via the official API. This MCP server exposes that discovery as clean, agent-ready tools so a Claude / OpenAI / LangChain agent can find, enrich, and track public Eventbrite events directly.

Tools

ToolWhat it does
discover_eventsFind public events by location, category, keyword, and date; returns normalized events + per-organizer rollups. Optional include_pricing adds price tiers + performers.
get_event_detailsEnrich specific event URLs with price range / ticket tiers, availability, organizer, performers, and venue.
get_organizer_eventsPull an organizer's public upcoming events from their /o/ page, plus a rollup of their event profile.

Modes

  • list_tools (default, free) - emit the tool catalog + the agentic-payment descriptor.
  • call_tool - invoke one tool: { "mode": "call_tool", "tool": "discover_events", "args": { "location": "ny--new-york", "category": "music", "keyword": "jazz" } }
  • batch - run several {tool, args} calls in one run (max 10).

Example

{
"mode": "call_tool",
"tool": "discover_events",
"args": {
"location": "ca--san-francisco",
"category": "business",
"date_from": "2026-07-01",
"date_to": "2026-07-31",
"include_pricing": true,
"limit": 25
}
}

Every tool returns { tool, args, ok, count, items, summary, error }. Tools never throw - upstream failure becomes ok: false with an error string.

Connect it to an MCP client

This Actor is exposed as a remote MCP tool through Apify's hosted MCP server. Point any MCP-compatible client (Claude Desktop, Cursor, VS Code, or an OpenAI / LangChain / LlamaIndex agent) at Apify's server with this Actor enabled:

{
"mcpServers": {
"apify": {
"url": "https://mcp.apify.com?tools=seibs.co/mcp-eventbrite-events-intel",
"headers": { "Authorization": "Bearer <YOUR_APIFY_TOKEN>" }
}
}
}

Get a token (free) from Apify Console -> Settings -> API & Integrations. The Actor then appears as a callable tool. Run mode=list_tools first (free) to fetch every tool's live JSON schema, then call one:

{ "mode": "call_tool", "tool": "discover_events", "args": { } }

Prefer a direct call? Hit the Actor straight through the Apify API / SDK - no MCP client required:

from apify_client import ApifyClient
client = ApifyClient("<YOUR_APIFY_TOKEN>")
run = client.actor("seibs.co/mcp-eventbrite-events-intel").call(run_input={
"mode": "call_tool", "tool": "discover_events", "args": {},
})
items = client.dataset(run["defaultDatasetId"]).list_items().items

Pricing

Flat $0.005 per MCP tool call, plus the upstream eventbrite-events-intel PPE events (event_record $0.005, price_ticket_enrichment $0.010, organizer_rollup $0.015) billed to the same run as pass-through.

Agentic payments (x402 + Skyfire)

This server is x402 (USDC on Base) and Skyfire ready - an AI agent can pay per call with no pre-provisioned API token when the operator enables Apify MCP monetization. The list_tools catalog advertises the accepted rails. Configure via env: X402_ENABLED, X402_PAY_TO_ADDRESS, X402_PRICE_USD, SKYFIRE_ENABLED, SKYFIRE_SELLER_ID.

Responsible use

Logged-out public Eventbrite event/organizer/venue data only. No login, no attendee/buyer PII, polite rate limits, fail-soft when blocked. See the upstream actor for the full legal posture.