Bring the Experience Graph into Claude
Eventmate is now a Claude connector. Add it once and every Claude conversation can answer the only question that matters on a Friday night: what's actually worth going to?
The connector lives at https://mcp.eventmate.ai and exposes three tools backed by the Experience Graph — the same canonical index of venues, artists, organizers, and events that powers Partymate, our consumer apps, and the public API.
Install in 60 seconds
- Open Claude, go to Settings → Connectors → Browse, search for Eventmate.
- Click Connect. Sign in with your phone number when prompted — the same Supabase OAuth flow Partymate uses.
- Start a new chat. The three tools below are now available.
What you can do
1. Tell Claude your taste
Save that I love Berghain, Hï Ibiza and Keinemusik.
Claude calls save_taste_preferences. Eventmate fuzzy-matches the names against the graph (no need to know the exact spelling), shows which canonical pages it resolved them to, and stores them as follows against your account so every future recommendation is personalised to you.
2. Get tonight's lineup, ranked
What's on in Berlin next weekend that I'd like?
Claude calls recommend_events with the resolved city + date window. Behind it, Eventmate builds a taste anchor from your saved follows, scores every event in the window against the anchor, and returns the top results with venue, lineup, time, and a 0–100 match score.
{
"city": "Berlin",
"window": { "start": "2026-05-22", "end": "2026-05-24" },
"top_events": [
{
"name": "Bicep · Berghain",
"venue": "Berghain",
"date": "2026-05-22",
"match_score": 91,
"signals": ["TECHNO", "PEAK_TIME", "UNDERGROUND"]
},
{
"name": "Keinemusik Closing",
"venue": "Watergate",
"date": "2026-05-23",
"match_score": 88,
"signals": ["MELODIC_HOUSE", "BIG_ARTIST"]
}
]
}3. Find that one specific show
Find me the Solomun set at Pacha in August.
Claude calls search_event. Trigram + semantic search across the graph returns the exact event with its full payload — ticketing, lineup, place, hosts, asset bundle.
The deterministic part
Every match score is the same number the Partymate web app computes, produced by the same scorer. We don't hallucinate names, we don't invent times. Each tool response is a structured object with provenance — you can ask Claude “why this one?”and it will read back the seeds, genres, tags, and venue similarity that drove the rank.
Try it yourself
Install Eventmate on Claude: Browse the Connectors Directory. No API key, no waitlist — just sign in with a phone number when Claude prompts you.
Want the same depth in your own product? The Experience Graph is available as a developer API. Request access or try the playground first.