På Plakaten
Koncerter og live-musik i Danmark — søg på by, dato, genre og artist
Community: Submitted by a user or imported; check the owner before granting accessOnlineNo sign-inGlobalFreeRead-only
What it can do
- Search Concerts: Search upcoming concerts and live music events in Denmark. Use this when the user asks what concerts, gigs, or live music are happening — optionally filtered by city, date range, genr
- Get Concert: Get full details for one concert by its id. Call this after search_concerts when the user asks for more detail about a specific event. Prices are Danish kroner (`price: {amount, currency:
- Search Artists: Find artists by name and list their upcoming Danish concerts. Use this when the user asks whether a specific artist is playing, or when they are touring. Each artist's `upcoming_concer
What data it sees
Do you need an account
No: the server works without sign-in
Koncerter og live-musik i Danmark — søg på by, dato, genre og artist
Server tool list (3)
Raw names from tools/list. Only developers need these.
| search_concerts | Search upcoming concerts and live music events in Denmark. Use this when the user asks what concerts, gigs, or live music are happening — optionally filtered by city, date range, genre, or artist. Returns events with venue, start time, ticket status and a ticket link. Always give each concert you mention its `ticket_link` as a clickable link — that link is how the user actually gets tickets, so never present a concert without it. Results are truncated to `limit`: `total` is the true number of matching concerts and `showing` is how many are included, so when total > showing say so rather than presenting the list as complete. Prices are Danish kroner (`price: {amount, currency: "DKK"}`), `price: {free: true}` means free admission, and an absent price means the price is unknown. Start times are UTC (`starts_at`); Danish local time is UTC+2 in summer, UTC+1 in winter. |
| get_concert | Get full details for one concert by its id. Call this after search_concerts when the user asks for more detail about a specific event. Prices are Danish kroner (`price: {amount, currency: "DKK"}`), `price: {free: true}` means free admission, and an absent price means the price is unknown. `starts_at` is UTC. |
| search_artists | Find artists by name and list their upcoming Danish concerts. Use this when the user asks whether a specific artist is playing, or when they are touring. Each artist's `upcoming_concerts` is truncated: `total` is that artist's true number of upcoming concerts and `showing` is how many are listed, so when total > showing say so rather than presenting the list as complete. Prices are Danish kroner (`price: {amount, currency: "DKK"}`), `price: {free: true}` means free admission, and an absent price means the price is unknown. `starts_at` is UTC. |