← 返回 Skills 市场
chrischall

Tmp.I0qcGZW9Yq

作者 chrischall · GitHub ↗ · v0.2.0 · MIT-0
cross-platform ✓ 安全检测通过
28
总下载
0
收藏
0
当前安装
1
版本数
在 OpenClaw 中安装
/install setlist-mcp
功能描述
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...
使用说明 (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.
安全使用建议
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.
能力标签
requires-sensitive-credentials
能力评估
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.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install setlist-mcp
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /setlist-mcp 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
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.
元数据
Slug setlist-mcp
版本 0.2.0
许可证 MIT-0
累计安装 0
当前安装数 0
历史版本数 1
常见问题

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... 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 28 次。

如何安装 Tmp.I0qcGZW9Yq?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install setlist-mcp」即可一键安装,无需额外配置。

Tmp.I0qcGZW9Yq 是免费的吗?

是的,Tmp.I0qcGZW9Yq 完全免费,采用 MIT-0 许可证,可自由下载、安装和使用。

Tmp.I0qcGZW9Yq 支持哪些平台?

Tmp.I0qcGZW9Yq 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Tmp.I0qcGZW9Yq?

由 chrischall(@chrischall)开发并维护,当前版本 v0.2.0。

💬 留言讨论