drio
Open app

Eventbrite MCP Server

Source

Model Context Protocol (MCP) server for Eventbrite.

Catalog onlyCatalog onlySTDIO

Overview

Eventbrite MCP Server is a Model Context Protocol (MCP) server designed to facilitate interaction with the Eventbrite API, enabling AI assistants to search for events, retrieve event details, and access venue information.

To use the Eventbrite MCP Server, install it via NPM or clone the repository, set up your Eventbrite API key, and run the server using the provided scripts.

  • Search for events based on various criteria (location, date, category, etc.) - Retrieve detailed information about specific events - Access venue information and event categories
  1. Integrating event search functionality into AI applications.
  2. Providing detailed event information for chatbots.
  3. Enabling users to find events based on specific preferences.

Add to your AI client

Use these steps to connect Eventbrite MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "eventbrite-mcp-ibraheem4": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-eventbrite-mcp-ibraheem4"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "eventbrite-mcp-ibraheem4": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-eventbrite-mcp-ibraheem4"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "eventbrite-mcp-ibraheem4": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-eventbrite-mcp-ibraheem4"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "eventbrite-mcp-ibraheem4": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-eventbrite-mcp-ibraheem4"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "eventbrite-mcp-ibraheem4": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-eventbrite-mcp-ibraheem4"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "eventbrite-mcp-ibraheem4": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-eventbrite-mcp-ibraheem4"
      ]
    }
  }
}

FAQ

How do I obtain an Eventbrite API key?

You can obtain an API key from the Eventbrite Developer Portal.

Can I run the server in development mode?

Yes! You can run the server in development mode using the command `npm run dev`.

What programming language is used for this project?

The Eventbrite MCP Server is built using JavaScript.