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).
The simplest way to install the Eventbrite MCP server is via NPM:
npm install -g @ibraheem4/eventbrite-mcp
Alternatively, you can install from source:
npm install
npm run build
To use this MCP server, you need to configure an Eventbrite API key:
.env
file in the project root:
EVENTBRITE_API_KEY=your_eventbrite_api_key_here
export EVENTBRITE_API_KEY=your_eventbrite_api_key_here
./test-api-key.js
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": []
}
}
}
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": []
}
}
}
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"
Search for Eventbrite events based on various criteria.
Parameters:
query
(string, optional): Search query for eventslocation
(object, optional): Location to search around
latitude
(number): Latitude coordinatelongitude
(number): Longitude coordinatewithin
(string, optional): Distance (e.g., '10km', '10mi')categories
(array of strings, optional): Category IDs to filter bystart_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' eventspage
(number, optional): Page number for paginationpage_size
(number, optional): Number of results per page (max 100)Get detailed information about a specific Eventbrite event.
Parameters:
event_id
(string, required): Eventbrite event IDGet a list of Eventbrite event categories.
No parameters required.
Get information about a specific Eventbrite venue.
Parameters:
venue_id
(string, required): Eventbrite venue IDURI Template: eventbrite://events/{eventId}
Get detailed information about a specific Eventbrite event.
Once configured, you can ask Claude to use the Eventbrite MCP tools with prompts like:
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.
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.
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": []
}
}
}
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.
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.
To add this MCP server to Claude Desktop:
1. Find your configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%APPDATA%\Claude\claude_desktop_config.json
~/.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