mcp live events
This server integrates with the Ticketmaster API to provide AI agents with real-time concert and event data, enabling dynamic fetching and formatting for ease of interpretation.
This server integrates with the Ticketmaster API to provide AI agents with real-time concert and event data, enabling dynamic fetching and formatting for ease of interpretation.
mcp-live-events
is a Model Context Protocol (MCP) server that integrates with
the Ticketmaster API to provide real-time event data. It allows AI agents to
fetch concert and event details dynamically.
Ensure you have the following installed:
Clone the repository:
git clone https://github.com/mmmaaatttttt/mcp-live-events.git
cd mcp-live-events
Install dependencies:
uv venv
uv sync
Set up your environment variables, i.e. the Ticketmaster API key. This can
either be placed in a .env
file in this repository, following the pattern
of the .env.example
file, or it can be placed in an "env" section of this
server's configuration in your MCP client.
Note that on the Ticketmaster developer portal, the API key is named "Consumer Key."
uv run mcp-live-events
If it's successful, you should see MCP Live Event server is running!
print to
your terminal.
[
{
"description": " Get upcoming music events for a city. Args: city: City in which to search for events. start_dttm_str: Start date/time in ISO 8601 format (YYYY-MM-DDTHH:MM:SSZ). Example: 2025-02-08T00:00:00Z end_dttm_str: Start date/time in ISO 8601 format (YYYY-MM-DDTHH:MM:SSZ). Example: 2025-02-10T00:00:00Z keyword: Any optional keywords to help filter search results. ",
"inputSchema": {
"properties": {
"city": {
"title": "City",
"type": "string"
},
"end_dttm_str": {
"title": "End Dttm Str",
"type": "string"
},
"keyword": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": {
"path": "README.md",
"type": "blob"
},
"title": "Keyword"
},
"start_dttm_str": {
"title": "Start Dttm Str",
"type": "string"
}
},
"required": [
"city",
"start_dttm_str",
"end_dttm_str"
],
"title": "get_upcoming_eventsArguments",
"type": "object"
},
"name": "get_upcoming_events"
}
]