- Home
- MCP servers
- MCP Live Events Server
MCP Live Events Server
- python
2
GitHub Stars
python
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"mmmaaatttttt-mcp-live-events": {
"command": "uv",
"args": [
"run",
"mcp-live-events"
],
"env": {
"CONSUMER_KEY": "YOUR_CONSUMER_KEY"
}
}
}
}You can run a Python-based MCP server that fetches real-time event data from the Ticketmaster API and presents it in a format easy for AI agents to interpret. This server lets you search for concerts and events and use the results seamlessly in your workflows or agents.
How to use
You operate this server from your command line using the MCP runner. Start it, then connect your MCP client to the local process. Once running, you can query for events by location, date, or keyword and receive structured event details ready for interpretation by AI agents. The server formats API responses to be straightforward to parse, so you can integrate live event data into recommendations, planning assistants, or conversational agents without building custom parsers.
How to install
Prerequisites you need before installing: you should have Python 3.13 or newer and the MCP runner tool named uv installed on your system.
Recommended steps to install and run the MCP live events server are shown in sequence below.