MCP Live Events Server

get_upcoming_events

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.

Input Schema

NameRequiredDescriptionDefault
cityYes
end_dttm_strYes
keywordNo
start_dttm_strYes

Input Schema (JSON Schema)

{ "properties": { "city": { "title": "City", "type": "string" }, "end_dttm_str": { "title": "End Dttm Str", "type": "string" }, "keyword": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": null, "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" }

You must be authenticated.

Other Tools