Eventbrite MCP server

Integrates with Eventbrite's API for event searching, detail retrieval, venue information access, and category exploration, enabling streamlined event discovery, planning, and analysis.
Back to servers
Setup instructions
Provider
Ibraheem Abdul-Malik
Release date
Mar 06, 2025
Language
TypeScript
Package
Stats
6.8K downloads
2 stars

The Eventbrite MCP server provides tools for interacting with the Eventbrite API, allowing AI assistants to search for events, get event details, retrieve venue information, and more through the Model Context Protocol (MCP).

Installation Options

Install from NPM

The simplest way to install the Eventbrite MCP server is via NPM:

npm install -g @ibraheem4/eventbrite-mcp

Install from Source

Alternatively, you can install from source:

  1. Clone the repository
  2. Install dependencies:
    npm install
    
  3. Build the project:
    npm run build
    

Configuration

To use this MCP server, you need to configure an Eventbrite API key:

  1. Obtain an API key from the Eventbrite Developer Portal
  2. Set up your API key in one of these ways:
    • Create a .env file in the project root:
      EVENTBRITE_API_KEY=your_eventbrite_api_key_here
      
    • Set an environment variable:
      export EVENTBRITE_API_KEY=your_eventbrite_api_key_here
      
    • Configure it in your MCP settings file (see below)
  3. Test your API key:
    ./test-api-key.js
    

Configuring for Claude Desktop App

Add the following to your ~/Library/Application Support/Claude/claude_desktop_config.json file (on macOS):

{
  "mcpServers": {
    "eventbrite": {
      "command": "npx",
      "args": ["-y", "@ibraheem4/eventbrite-mcp"],
      "env": {
        "EVENTBRITE_API_KEY": "your-eventbrite-api-key"
      },
      "disabled": false,
      "autoApprove": []
    }
  }
}

Configuring for Claude Developer Environment

Add the following to your ~/Library/Application Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json file (on macOS):

{
  "mcpServers": {
    "eventbrite": {
      "command": "npx",
      "args": ["-y", "@ibraheem4/eventbrite-mcp"],
      "env": {
        "EVENTBRITE_API_KEY": "your-eventbrite-api-key"
      },
      "disabled": false,
      "autoApprove": []
    }
  }
}

Running the Server

If you've installed from source, use the provided run script:

./run.sh

Or run it manually:

npx -y supergateway --port 1337 --stdio "./build/index.js"

Available Tools

search_events

Search for Eventbrite events based on various criteria.

Parameters:

  • query (string, optional): Search query for events
  • location (object, optional): Location to search around
    • latitude (number): Latitude coordinate
    • longitude (number): Longitude coordinate
    • within (string, optional): Distance (e.g., '10km', '10mi')
  • categories (array of strings, optional): Category IDs to filter by
  • start_date (string, optional): Start date in ISO format (e.g., '2023-01-01T00:00:00Z')
  • end_date (string, optional): End date in ISO format (e.g., '2023-12-31T23:59:59Z')
  • price (string, optional): Filter by 'free' or 'paid' events
  • page (number, optional): Page number for pagination
  • page_size (number, optional): Number of results per page (max 100)

get_event

Get detailed information about a specific Eventbrite event.

Parameters:

  • event_id (string, required): Eventbrite event ID

get_categories

Get a list of Eventbrite event categories.

No parameters required.

get_venue

Get information about a specific Eventbrite venue.

Parameters:

  • venue_id (string, required): Eventbrite venue ID

Resources

Event Details Resource

URI Template: eventbrite://events/{eventId}

Get detailed information about a specific Eventbrite event.

Usage Examples

Once configured, you can ask Claude to use the Eventbrite MCP tools with prompts like:

  • "Search for music events in New York next weekend"
  • "Get details about Eventbrite event with ID 123456789"
  • "What categories of events are available on Eventbrite?"
  • "Tell me about the venue with ID 987654321"

How to install this MCP server

For Claude Code

To add this MCP server to Claude Code, run this command in your terminal:

claude mcp add-json "eventbrite" '{"command":"npx","args":["-y","@ibraheem4/eventbrite-mcp"],"env":{"EVENTBRITE_API_KEY":"your-eventbrite-api-key"},"disabled":false,"autoApprove":[]}'

See the official Claude Code MCP documentation for more details.

For Cursor

There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json file so that it is available in all of your projects.

If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json file.

Adding an MCP server to Cursor globally

To add a global MCP server go to Cursor Settings > Tools & Integrations and click "New MCP Server".

When you click that button the ~/.cursor/mcp.json file will be opened and you can add your server like this:

{
    "mcpServers": {
        "eventbrite": {
            "command": "npx",
            "args": [
                "-y",
                "@ibraheem4/eventbrite-mcp"
            ],
            "env": {
                "EVENTBRITE_API_KEY": "your-eventbrite-api-key"
            },
            "disabled": false,
            "autoApprove": []
        }
    }
}

Adding an MCP server to a project

To add an MCP server to a project you can create a new .cursor/mcp.json file or add it to the existing one. This will look exactly the same as the global MCP server example above.

How to use the MCP server

Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.

The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.

You can also explicitly ask the agent to use the tool by mentioning the tool name and describing what the function does.

For Claude Desktop

To add this MCP server to Claude Desktop:

1. Find your configuration file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json

2. Add this to your configuration file:

{
    "mcpServers": {
        "eventbrite": {
            "command": "npx",
            "args": [
                "-y",
                "@ibraheem4/eventbrite-mcp"
            ],
            "env": {
                "EVENTBRITE_API_KEY": "your-eventbrite-api-key"
            },
            "disabled": false,
            "autoApprove": []
        }
    }
}

3. Restart Claude Desktop for the changes to take effect

Want to 10x your AI skills?

Get a free account and learn to code + market your apps using AI (with or without vibes!).

Nah, maybe later