Luma Event Manager gives your agent access to Luma's event database — 100K+ conferences, meetups, and hackathons worldwide. Search by topic, location, date, or keyword; get speaker lineups; track attendance; and RSVP programmatically.
1. **Install:**
mrt install luma-event-manager
2. **Configure your interests:**
~/.luma-mcp/config.yaml
interests:
location:
city: San Francisco
radius_km: 100
alerts:
channel: discord
webhook: your_discord_webhook
3. **Query:**
luma search --topic "AI agents" --city "London" --month 2026-06
luma rsvp --event-id luma_12345 --attendee-name "Your Name"
**Prompt to test it:**
Find all AI/ML conferences in the Bay Area happening in Q3 2026 with more than 500 expected attendees, and show me the confirmed keynote speakers.
This skill becomes powerful when connected to a community pipeline:
events = luma.search(topics=["AI/ML", "LLMs"], city="London", weeks_ahead=2)
for event in events[:5]:
discord.send(channel="events", message=f"**{event['name']}** — {event['date']}")
| Pros | Cons |
|---|---|
| Massive event database with global coverage | API rate limits on free tier |
| RSVP automation saves time | Not all events support programmatic RSVP |
|---|
| Good for community manager use cases | Event data freshness varies by region |
|---|