mcp live events

Local 2025-08-31 23:39:43 0
Entertainment And Media @mmmaaatttttt/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.


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.

Features

  • ?️ Integrates with the Ticketmaster API to search for events
  • ?️ Formats API responses for ease of LLM interpretation

Setup

Prerequisites

Ensure you have the following installed:

  • uv (used for package management)
  • Python 3.13+
  • A Ticketmaster API key (free to use, but rate limited)

Installation

  1. Clone the repository:

    git clone https://github.com/mmmaaatttttt/mcp-live-events.git
    cd mcp-live-events
  2. Install dependencies:

    uv venv
    uv sync
  3. 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."

Running the server

uv run mcp-live-events

If it's successful, you should see MCP Live Event server is running! print to your terminal.

Resources

[
  {
    "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"
  }
]