Provides detailed music data and user info from Last.fm, including artists, albums, tracks, charts, tags, and user listening stats via Last.fm API.
数据来源:ClawHub。 在 ClawSkills 查看
选择你使用的 Agent
方法一:命令行安装(推荐)
推荐(无需提前安装 clawhub)
npx clawhub@latest --dir ~/.claude/skills install last-fm或使用 clawhub CLI(需提前安装)
clawhub --dir ~/.claude/skills install last-fm⚠️ 需要 Node.js 18+,没有 Node?请使用下方方法二直接下载 ZIP。 安装 Node.js →
方法二:手动下载安装(无需 Node)
下载 ZIP,解压后将文件夹放到以下路径,重启 Agent 即可:
安装路径
~/.claude/skills/last-fm/💡解压后将文件夹放到上方路径,重启 Agent 即可生效
# OpenClaw-Last.fm
A openclaw Skill with Last.fm API
## Requirements
- Last.fm API Key ([Get in website](https://www.last.fm/api))
## How to request API
- Root URL: `https://ws.audioscrobbler.com/2.0/` (GET/POST)
### Required parameters
- `api_key`: API Key
- `method`: Method name
- `format`: XML (default) or JSON
---
## Methods
Below are commonly used Last.fm methods grouped by resource type.
All requests use the same base URL and append query parameters.
---
### Artist
#### `artist.getInfo`
Get detailed information about a specific artist (bio, images, stats, tags, similar artists, etc.).
**Example request (JSON):**
GET https://ws.audioscrobbler.com/2.0/?method=artist.getinfo&artist=Radiohead&api_key=YOUR_API_KEY&format=json
#### `artist.getTopTracks`
Get the top tracks for an artist, ordered by playcount.
**Example request:**
GET https://ws.audioscrobbler.com/2.0/?method=artist.gettoptracks&artist=Radiohead&api_key=YOUR_API_KEY&format=json
#### `artist.getTopAlbums`
Get the top albums for an artist, ordered by playcount.
**Example request:**
GET https://ws.audioscrobbler.com/2.0/?method=artist.gettopalbums&artist=Radiohead&api_key=YOUR_API_KEY&format=json
#### `artist.search`
Search for artists by name and get a list of matching artists.
**Example request:**
GET https://ws.audioscrobbler.com/2.0/?method=artist.search&artist=Radiohead&api_key=YOUR_API_KEY&format=json
---
### Album
#### `album.getInfo`
Get album metadata (tracks, tags, playcount, cover art, etc.) for a given artist and album.
**Example request:**
GET https://ws.audioscrobbler.com/2.0/?method=album.getinfo&artist=Radiohead&album=OK+Computer&api_key=YOUR_API_KEY&format=json
#### `album.getTopTags`
Get the most popular tags applied to a specific album.
**Example request:**
GET https://ws.audioscrobbler.com/2.0/?method=album.gettoptags&artist=Radiohead&album=OK+Computer&api_key=YOUR_API_KEY&format=json
#### `album.search`
Search for albums by name and get possible matches.
**Example request:**
GET https://ws.audioscrobbler.com/2.0/?method=album.search&album=OK+Computer&api_key=YOUR_API_KEY&format=json
---
### Track
#### `track.getInfo`
Get detailed metadata for a track, including album, duration, listeners, playcount, and wiki (if available).
**Example request:**
GET https://ws.audioscrobbler.com/2.0/?method=track.getinfo&artist=Radiohead&track=Karma+Police&api_key=YOUR_API_KEY&format=json
#### `track.getTopTags`
Get the most popular tags for a given track.
**Example request:**
GET https://ws.audioscrobbler.com/2.0/?method=track.gettoptags&artist=Radiohead&track=Karma+Police&api_key=YOUR_API_KEY&format=json
#### `track.search`
Search for tracks by name (and optionally by artist) and get a list of matches.
**Example request:**
GET https://ws.audioscrobbler.com/2.0/?method=track.search&track=Karma+Police&api_key=YOUR_API_KEY&format=json
---
### User
#### `user.getInfo`
Get profile information about a user (playcount, country, age (if public), images, etc.).
**Example request:**
GET https://ws.audioscrobbler.com/2.0/?method=user.getinfo&user=someusername&api_key=YOUR_API_KEY&format=json
#### `user.getRecentTracks`
Get the list of recently scrobbled tracks by a user, including timestamps and “now playing” status.
**Example request:**
GET https://ws.audioscrobbler.com/2.0/?method=user.getrecenttracks&user=someusername&limit=20&api_key=YOUR_API_KEY&format=json
#### `user.getTopArtists`
Get a user’s top artists over a specific period (overall, 7day, 1month, 3month, 6month, 12month).
**Example request:**
GET https://ws.audioscrobbler.com/2.0/?method=user.gettopartists&user=someusername&period=1month&limit=20&api_key=YOUR_API_KEY&format=json
#### `user.getTopTracks`
Get a user’s top tracks over a selected period.
**Example request:**
GET https://ws.audioscrobbler.com/2.0/?method=user.gettoptracks&user=someusername&period=3month&limit=20&api_key=YOUR_API_KEY&format=json
---
### Library
#### `library.getArtists`
Get a paginated list of all artists in a user’s library with play counts and tag counts.
**Example request:**
GET https://ws.audioscrobbler.com/2.0/?method=library.getartists&user=someusername&limit=10&page=1&api_key=YOUR_API_KEY&format=json
#### `library.getAlbums`
Get albums from a user’s library, optionally filtered by artist.
**Example request:**
GET https://ws.audioscrobbler.com/2.0/?method=library.getalbums&user=someusername&limit=10&page=1&api_key=YOUR_API_KEY&format=json
#### `library.getTracks`
Get tracks from a user’s library with their play counts.
**Example request:**
GET https://ws.audioscrobbler.com/2.0/?method=library.gettracks&user=someusername&limit=10&page=1&api_key=YOUR_API_KEY&format=json
---
### Chart
#### `chart.getTopArtists`
Get the global top artists chart on Last.fm.
**Example request:**
GET https://ws.audioscrobbler.com/2.0/?method=chart.gettopartists&api_key=YOUR_API_KEY&format=json
#### `chart.getTopTracks`
Get the global top tracks chart.
**Example request:**
GET https://ws.audioscrobbler.com/2.0/?method=chart.gettoptracks&api_key=YOUR_API_KEY&format=json
#### `chart.getTopTags`
Get the global top tags chart.
**Example request:**
GET https://ws.audioscrobbler.com/2.0/?method=chart.gettoptags&api_key=YOUR_API_KEY&format=json
---
### Tag
#### `tag.getInfo`
Get metadata for a tag (description, reach, total uses, etc.).
**Example request:**
GET https://ws.audioscrobbler.com/2.0/?method=tag.getinfo&tag=k-pop&api_key=YOUR_API_KEY&format=json
#### `tag.getTopArtists`
Get top artists associated with a specific tag.
**Example request:**
GET https://ws.audioscrobbler.com/2.0/?method=tag.gettopartists&tag=k-pop&api_key=YOUR_API_KEY&format=json
#### `tag.getTopTracks`
Get top tracks associated with a tag.
**Example request:**
GET https://ws.audioscrobbler.com/2.0/?method=tag.gettoptracks&tag=k-pop&api_key=YOUR_API_KEY&format=json
#### `tag.getTopAlbums`
Get top albums associated with a tag.
**Example request:**
GET https://ws.audioscrobbler.com/2.0/?method=tag.gettopalbums&tag=k-pop&api_key=YOUR_API_KEY&format=json
---安装 last.fm 后,可以对 AI 说这些话来触发它
Help me get started with last.fm
Explains what last.fm does, walks through the setup, and runs a quick demo based on your current project
Use last.fm to detailed music data and user info from Last
Invokes last.fm with the right parameters and returns the result directly in the conversation
What can I do with last.fm in my data & analytics workflow?
Lists the top use cases for last.fm, with example commands for each scenario
将技能文件夹放到 ~/.claude/skills/last-fm/ 目录(个人级,所有项目可用),或 .claude/skills/last-fm/(项目级)。重启 AI 客户端后,用 /last-fm 主动调用,或让 AI 根据上下文自动发现并使用。
last.fm 支持 Claude、Cursor、OpenClaw,可与这些 AI 平台无缝集成,扩展其能力。
last.fm 可免费安装使用。请查阅仓库了解许可证信息。
Provides detailed music data and user info from Last.fm, including artists, albums, tracks, charts, tags, and user listening stats via Last.fm API.
last.fm 属于「Data & Analytics」分类,该分类的技能帮助 AI 智能体在此领域执行专业任务。
Automate my data & analytics tasks using last.fm
Identifies repetitive steps in your workflow and sets up last.fm to handle them automatically