setlist-fpx

setlist-fpx is a skill for Claude Code from chrischall/setlist-mcp. It costs 111 tokens per session (1,752 once invoked), scanned A, original, MIT.

A command-line connection to setlist.fm, a website that stores concert song lists and live-music history.

In plain words
What is it for?
Searching artists, concerts, venues, cities, users, and setlists, and marking a setlist as one you attended.
Why use it?
It provides direct shell access to setlist.fm data and supports the site's attendance marker, which the public data API does not update.

Skill for Claude Code

Written for Claude Code: shipped in a Claude Code plugin.

Part of the setlist-mcp plugin — 2 skills, 2 MCP servers shipped together

Good fit Searching artists, concerts, venues, cities, users, and setlists, and marking a setlist as one you attended.

Compare 6 skills from other repositories ↓
Install with agentmods
npx agentmods add skills/chrischall/setlist-mcp/setlist-fpx
Install

Getting it into your agent

One page per mod, every tool's command on it. A separate URL per tool would split the same page into five that compete with each other.

Any agent
npx skills add chrischall/setlist-mcp --skill setlist-fpx
Clone the repo
git clone --depth 1 https://github.com/chrischall/setlist-mcp

Made for: Claude Code.

Or install setlist-mcp, the plugin that ships this one along with the rest of its 2 skills, 2 MCP servers.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for setlist-fpx

README.md
[![agentmods](https://agentmods.dev/badge/skills/chrischall/setlist-mcp/setlist-fpx/github.svg)](https://agentmods.dev/skills/chrischall/setlist-mcp/setlist-fpx)
Your own site
<a href="https://agentmods.dev/skills/chrischall/setlist-mcp/setlist-fpx"><img src="https://agentmods.dev/badge/skills/chrischall/setlist-mcp/setlist-fpx/github.svg" alt="Measured on agentmods" height="20"></a>

Or the 80×15 button, for a site that already has a row of RSS and ATOM ones. Only the verdict fits; the numbers stay here.

agentmods 80×15 button for setlist-fpx

Your own site · 80×15
<a href="https://agentmods.dev/skills/chrischall/setlist-mcp/setlist-fpx"><img src="https://agentmods.dev/badge/skills/chrischall/setlist-mcp/setlist-fpx.svg" alt="Reviewed on agentmods" width="80" height="20"></a>
Per session 111 Skills are progressive disclosure: only the name and description are preloaded; the body loads when the skill is used.
When invoked 1,752 The whole file, excluding the scripts and references it only reads on demand.
Security scan A 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.00111 $0.01752
Opus 5 $0.00056 $0.00876
Sonnet 5 $0.00022 $0.00350
Haiku 4.5 $0.00011 $0.00175

Measured 9d ago against content hash fe0181a37173, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-10, from the pricing page.

Security

Grade A, and why

setlist-fpx scanned grade A with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 9d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Makes network callslowCapability

Not a fault in itself. Listed so you know the mod talks to something, and to what.

via plain curl against the public REST API (an x-api-key header), and
skills/setlist-fpx/SKILL.md · 150 lines

How it starts

The opening of the file, as written. The whole thing — 150 lines — stays where its author put it; the contents beside it link to each section on GitHub.

setlist.fm via curl + fpx (no MCP)

setlist.fm is hybrid: reads and writes use two different surfaces.

  • Reads — a documented public REST API (api.setlist.fm/rest) keyed by an x-api-key header. Plain curl, no browser, no fpx.
  • Writes — the only mutation setlist.fm offers is the site's "I was there" attendance toggle, and it exists only on the logged-in website (www.setlist.fm, server-rendered Apache Wicket), not the REST API. There's no login form to script — the credential is your browser's session cookie. fpx lifts that cookie out of your signed-in tab once; every actual request afterward is plain curl carrying it. No bridge round-trip per call.

This is the same data/actions the setlist_* MCP tools expose, reached with curl instead of a running server.

Part 1 — reads (curl + API key)

One-time setup

Apply for a free key at https://www.setlist.fm/settings/api, non-commercial use only (see API terms below), then:

export SETLIST_API_KEY=xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx

Core call

curl -s 'https://api.setlist.fm/rest/1.0/search/artists?artistName=Radiohead' \
  -H "x-api-key: $SETLIST_API_KEY" -H 'Accept: application/json' \
  | jq '.artist[] | {name, mbid, url}'

Accept: application/json is required — the API serves XML otherwise. Optional Accept-Language: en|es|fr|de|pt|tr|it|pl localizes city/country names. Standard tier is ~2 req/sec, 1440/day — a 429 means slow down.

Dates are dd-MM-yyyy on the wire (NOT ISO) for date search params and lastUpdated (yyyyMMddHHmmss); eventDate comes back the same way in responses — convert both directions yourself (the MCP does this for you via dmyToIso/isoToDmy; a shell one-liner: date -j -f '%Y-%m-%d' '+%d-%m-%Y' on macOS).

The full request catalog (all 15 read endpoints, params, and jq projections) is in references/rest-api.md.

The one rule: chain ids, don't guess them

Every entity is keyed by an id you get from a search: artists by mbid (MusicBrainz id), setlists by setlistId, venues by venueId, cities by geoId. Search first, then feed the id into the matching get/setlists endpoint. Got a setlist.fm URL instead of an id? The id is the trailing hex token before .html, e.g. .../setlist/.../...-4ba8a766.html4ba8a766 — no fetch needed.

Read the full file on GitHub · 150 lines

Files

What ships with it

2 files beside SKILL.md in the same directory: the scripts, references and assets a skill reads on demand. Not counted in the per-session cost; read them before you install if any of them is executable.

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 9d ago First seen · 150 lines · 111 tokens per session scan A fe0181a37173

Subscribe to this mod's changes

setlist-fpx is a skill published in the GitHub repository chrischall/setlist-mcp (1 stars, last pushed today), licensed MIT. It adds 111 tokens to every session and 1,752 once invoked, about $0.0006 per session on Opus 5. A static security scan graded it A with 1 finding (makes network calls). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other skills, from other repositories

webgl-holographic-foil

A self-contained WebGL2 hero: thin-film interference over a crushed-foil surface whose palette shifts with the viewing angle; move the cursor to tilt the film.

nexu-io/open-design · 41 tokens

general-video

Author or edit a custom HyperFrames composition when no specialized workflow fits, or when BRIEF.md sets flow: companion. Use for longer or multi-scene pieces, brand and sizzle reels, montages, static loops, static title cards, footage remixes, and freeform builds. Use motion-graphics instead for a short unnarrated…

heygen-com/hyperframes · 92 tokens

html-ppt-hermes-cyber-terminal

OpenDesign + BYOK: choosing and wiring your own model, hands-on — cost, quality, and the routing decision. Built as a decision-grade AI literacy deck for engineers, IT, applied-AI teams.

nexu-io/open-design · 53 tokens

html-ppt-taste-brutalist

16:9 HTML deck in tactical-telemetry / CRT-terminal taste. Deactivated-CRT charcoal slides, white-phosphor monospace, hazard-red accent, scanline overlay, ASCII syntax, density over decoration. Distilled from Leonxlnx/taste-skill brutalist-skill (Tactical Telemetry mode).

nexu-io/open-design · 78 tokens

diagnostic-stem-delivery

Audio production with diagnostic analysis, timecode parsing from documents, and verified export workflow.

HKUDS/OpenSpace · 23 tokens

chengfeng-check-updates

An environment manager for a video-editing system. It checks whether its skills and runtime—the software needed to run them—are installed and compatible.

Agentchengfeng/chengfeng-videocut-skills · 120 tokens