← Back to Skills Marketplace
chrischall

Tmp.I0qcGZW9Yq

by chrischall · GitHub ↗ · v0.2.0 · MIT-0
cross-platform ✓ Security Clean
28
Downloads
0
Stars
0
Active Installs
1
Versions
Install in OpenClaw
/install setlist-mcp
Description
Look up concert setlists and live-music history via setlist.fm. Use when the user asks what songs an artist played at a show, their tour setlists, what was p...
README (SKILL.md)

setlist-mcp

MCP server for setlist.fm — search concert setlists, artists, venues, and tours via natural language. Read-only (setlist.fm has no write API).

Setup

Option A — npx (recommended)

Add to .mcp.json in your project or ~/.claude/mcp.json:

{
  "mcpServers": {
    "setlist": {
      "command": "npx",
      "args": ["-y", "setlist-mcp"],
      "env": {
        "SETLIST_API_KEY": "your-api-key-here"
      }
    }
  }
}

Option B — from source

git clone https://github.com/chrischall/setlist-mcp
cd setlist-mcp
npm install && npm run build

Then add to .mcp.json:

{
  "mcpServers": {
    "setlist": {
      "command": "node",
      "args": ["/path/to/setlist-mcp/dist/index.js"],
      "env": {
        "SETLIST_API_KEY": "your-api-key-here"
      }
    }
  }
}

Or use a .env file in the project directory with SETLIST_API_KEY=\x3Cvalue>.

Getting your API key

Apply for a free API key (non-commercial use) at setlist.fm/settings/api — you'll need a setlist.fm account. The key is sent as the x-api-key header on every request.

Optional: set SETLIST_ACCEPT_LANGUAGE (one of en, es, fr, de, pt, tr, it, pl) to localize city/country names.

Tools

All tools are read-only and prefixed setlist_.

Artists

  • setlist_search_artists — find artists by artistName or artistMbid; returns each artist's MusicBrainz ID (mbid).
  • setlist_get_artist — get an artist by mbid.
  • setlist_get_artist_setlists — an artist's setlists (most recent first), by mbid, paginated via p.

Setlists

  • setlist_search_setlists — search by any mix of artist, venue, city, country, tour, date (dd-MM-yyyy), or year.
  • setlist_get_setlist — a setlist (with full song list) by setlistId.
  • setlist_get_setlist_version — a specific historical version by versionId.

Venues

  • setlist_search_venues — find venues by name and/or location.
  • setlist_get_venue — get a venue by venueId.
  • setlist_get_venue_setlists — setlists performed at a venue, paginated via p.

Cities & countries

  • setlist_search_cities — find cities by name/location; returns each city's geoId.
  • setlist_get_city — get a city by geoId.
  • setlist_search_countries — list all supported countries and their codes.

Users

  • setlist_get_user — a user's public profile by userId.
  • setlist_get_user_attended — concerts a user marked as attended.
  • setlist_get_user_edited — setlists a user has created or edited.

Utility

  • setlist_healthcheck — verify the API key works and the API is reachable.

Typical flows

  • "What did Radiohead play at their last show?"setlist_search_artists (Radiohead → mbid) → setlist_get_artist_setlists (latest) → setlist_get_setlist for the song list.
  • "Setlists at Red Rocks in 2023"setlist_search_venues (Red Rocks → venueId) → setlist_search_setlists with venueId + year: 2023.
  • "Phish on 2023-08-07"setlist_search_setlists with artistName: "Phish", date: "07-08-2023" (note the dd-MM-yyyy format).

Notes

  • IDs chain: search_* tools return the mbid / setlistId / venueId / geoId you feed into the get_* tools.
  • date filters use dd-MM-yyyy (e.g. 07-08-2023 = 7 August 2023).
  • Results are paginated; pass p (1-based) to page through large result sets.
  • setlist.fm rate-limits the standard tier (~2 req/sec); a 429 is retried once.
Usage Guidance
Before installing, confirm you trust the referenced npm package or GitHub repository, and store the setlist.fm API key only in the intended MCP config or .env file. The skill itself appears limited to read-only concert setlist lookups.
Capability Tags
requires-sensitive-credentials
Capability Assessment
Purpose & Capability
The stated purpose is concert setlist and live-music history lookup, and the listed capabilities are searches or retrievals for artists, setlists, venues, cities, countries, and public user activity.
Instruction Scope
Instructions stay within setup and use of the setlist MCP server; there are no hidden role changes, prompt overrides, unrelated data access, or destructive actions in the artifact.
Install Mechanism
Setup uses an external npm package via npx or a GitHub clone/build flow, which is normal for MCP servers but means users should trust that package or source before running it.
Credentials
The requested network/API access and SETLIST_API_KEY are proportionate to authenticated setlist.fm lookups; no broad local indexing or private file access is requested.
Persistence & Privilege
The API key may be stored in an MCP config file or .env file, but the skill does not request elevated privileges, background persistence, write authority, or destructive access.
How to Use
  1. Make sure OpenClaw is installed (local or Docker)
  2. Run the install command in chat: /install setlist-mcp
  3. After installation, invoke the skill by name or use /setlist-mcp
  4. Provide required inputs per the skill's parameter spec and get structured output
Version History
v0.2.0
- Major update to documentation with detailed setup instructions, authentication info, and tool descriptions. - Clarified usage triggers and typical conversational queries that activate the skill. - Listed and explained all available tools and their parameters for artists, setlists, venues, cities, users, and utility. - Added sections on result pagination, date formats, API key setup, and rate-limiting behavior. - Improved guidance for getting started via npx or from source.
Metadata
Slug setlist-mcp
Version 0.2.0
License MIT-0
All-time Installs 0
Active Installs 0
Total Versions 1
Frequently Asked Questions

What is Tmp.I0qcGZW9Yq?

Look up concert setlists and live-music history via setlist.fm. Use when the user asks what songs an artist played at a show, their tour setlists, what was p... It is an AI Agent Skill for Claude Code / OpenClaw, with 28 downloads so far.

How do I install Tmp.I0qcGZW9Yq?

Run "/install setlist-mcp" in the OpenClaw or Claude Code chat to install it in one step — no extra setup required.

Is Tmp.I0qcGZW9Yq free?

Yes, Tmp.I0qcGZW9Yq is completely free, licensed under MIT-0. You can download, install and use it at no cost.

Which platforms does Tmp.I0qcGZW9Yq support?

Tmp.I0qcGZW9Yq is cross-platform and runs anywhere OpenClaw / Claude Code is available (cross-platform).

Who created Tmp.I0qcGZW9Yq?

It is built and maintained by chrischall (@chrischall); the current version is v0.2.0.

💬 Comments