Skip to content
eventmate AI
All posts
ChatGPTMCPApp

Make ChatGPT plan your night out

5 min read

Eventmate is now a ChatGPT app. One click in Settings, one phone-number verification, and ChatGPT can plan your night out anywhere we operate — Berlin, Hamburg, Ibiza, Miami, and thirty more cities.

The app speaks MCP. Behind the three tools sits the same Experience Graph that powers Partymate and the public Eventmate API: 100k+ live experiences, 12k+ hosts, structured with provenance, refreshed daily.

Install in 60 seconds

  • In ChatGPT, open Settings → Connectors → Browse apps and find Eventmate.
  • Click Connect. ChatGPT will hand off to our one-tap phone-number sign-in (the same Supabase OAuth flow our mobile app uses).
  • Start a chat. ChatGPT can now save your taste, recommend events, and look up specific shows.

Three worked examples

1. Onboard your taste in one sentence

Save that I love Marco Carola, Solomun, and Hï Ibiza.

ChatGPT calls save_taste_preferences. We fuzzy-resolve each name against the graph, confirm the matches back to you, and store them as follows on your account — so every future recommendation reads from the same taste profile.

2. Ask what's on

I'm in Miami this weekend. What's the best Saturday night?

ChatGPT calls recommend_events. Eventmate builds a taste anchor from your saved follows, fetches every event in Miami inside the weekend window, and scores each one against the anchor. The top results come back as structured objects ChatGPT renders as cards.

JSON · sample tool call
{
  "tool": "recommend_events",
  "arguments": {
    "city": "Miami",
    "dateStart": "2026-05-23",
    "dateEnd": "2026-05-24"
  }
}

3. Find a specific show

Is Bedouin playing in Tulum next month?

ChatGPT calls search_event. Returns the exact event if we have it indexed — date, venue, lineup, ticket link — or tells you plainly that we don't.

What makes it different

  • Real data, not hallucinated. Every event resolves to a canonical ID in the Experience Graph. ChatGPT doesn't invent venues, times, or lineups — it returns whatever Eventmate knows is true today.
  • Deterministic ranking. The same 0–100 match score the Partymate mobile app uses. Driven by cosine similarity over the artist embedding graph, plus genre / tag / host overlap.
  • Built for chat. Three small tools, intentionally. Big enough to handle the question; small enough that ChatGPT doesn't get distracted picking the wrong one.

Try it yourself

Open ChatGPT and search for Eventmate in the apps directory. Or jump straight into the playground on this site — same deterministic scoring, no install.

Keep reading