streamable-httpupdated 1mo ago
Gigora is a live-music discovery platform covering 44,000+ upcoming concerts worldwide (Ticketmaster, Songkick and local Turkish ticket vendors, refreshed daily). This repository documents its hosted Model Context Protocol (MCP) server — to our knowledge the first MCP server for live-concert discovery.
What can you do with gigora?
Gigora MCP — live concert data for AI agents
Gigora is a live-music discovery platform covering 44,000+ upcoming concerts worldwide (Ticketmaster, Songkick and local Turkish ticket vendors, refreshed daily). This repository documents its hosted Model Context Protocol (MCP) server — to our knowledge the first MCP server for live-concert discovery.
- Endpoint:
https://gigora.live/api/mcp(Streamable HTTP, stateless) - Auth: none — no API key required
- Full docs & examples: https://gigora.live/developers
Tools
| Tool | What it does |
|---|---|
search_concerts |
Search upcoming concerts by city, country, artist, genre and date range |
artist_tour_dates |
Upcoming tour dates for a specific artist |
concerts_in_city |
Concerts in a city over the next N days |
festival_lookup |
Find festivals by name or country |
Responses include a human-readable summary plus structured data: title, local start time, venue/city/country, headliner, indicative price range and ticket links.
Connect
claude.ai / Claude Desktop (custom connector): add https://gigora.live/api/mcp as a remote MCP server.
Claude Code:
claude mcp add --transport http gigora https://gigora.live/api/mcp
Any MCP client: point a Streamable-HTTP transport at the endpoint above — initialize, tools/list, tools/call all work without a session.
Standard config (JSON):
{
"mcpServers": {
"gigora": {
"type": "streamable-http",
"url": "https://gigora.live/api/mcp"
}
}
}
Example prompts
- "Which festivals are on in Portugal this month?"
- "When is Interpol playing near Toulouse?"
- "Find rock concerts in Istanbul in the next two weeks."
Public JSON endpoints (no MCP client needed)
GET https://gigora.live/api/ai/events?city=&country=&artist=&genre=&from=&to=&limit=GET https://gigora.live/api/ai/artist/<slug>
Rate-limited, read-only, CORS-enabled for GET. See gigora.live/developers for details.
Install
Add gigora to your client. Pick the one you use.
claude mcp add --transport http gigora https://gigora.live/api/mcpcodex mcp add gigora --url https://gigora.live/api/mcp{
"mcpServers": {
"gigora": {
"url": "https://gigora.live/api/mcp"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"gigora": {
"type": "http",
"url": "https://gigora.live/api/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"gigora": {
"url": "https://gigora.live/api/mcp"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"gigora": {
"serverUrl": "https://gigora.live/api/mcp"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
4 tools
gigora exposes 4 tools to a connected agent.
- search_concerts
- Search upcoming concerts by city, country, artist, genre and date range
- artist_tour_dates
- Upcoming tour dates for a specific artist
- concerts_in_city
- Concerts in a city over the next N days
- festival_lookup
- Find festivals by name or country
Score
62 / 100
Good
- Documentation22/25
- Maintenance16/25
- Trust6/20
- Capability6/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 50 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 4 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 1.0.0Latest | Jul 9, 2026 |