setlistify
An MCP server that fetches real setlists from setlist.fm and creates Spotify playlists from them, supporting fuzzy matching and various modes like latest show or best-of from recent shows.
README
<div align="center"> <img src="docs/logo.png" alt="setlistify logo" width="120" /> <h1>setlistify</h1> </div>
"Make me a Spotify playlist from Radiohead's last show" → done.
An MCP server that connects setlist.fm and Spotify. Tell Claude which artist and show you want — it fetches the real setlist, matches every track on Spotify, and creates the playlist.
Works with Claude Code and Claude Desktop.
Example
You: Create a playlist from Metallica's most recent show.
Claude: Created "Metallica — Live Setlist (09-01-2024)"
Setlist from Estadi Olímpic Lluís Companys, Barcelona — 09-01-2024.
21/22 tracks matched.
→ https://open.spotify.com/playlist/...
You: Which songs does The National always play live vs. their rarities?
Claude: Always played (last 10 shows): Bloodbuzz Ohio, Terrible Love, Mr. November
Rarities (played once): Sorrow, Available, Green Gloves
Never played live: 34 studio tracks
What it does
- Fetches real setlists from setlist.fm for any artist
- Searches Spotify for each track with fuzzy matching for live variants
- Creates a Spotify playlist and returns the URL
mode="latest"— most recent showmode="best-of"— aggregates last N shows, ranks by play frequency- Diffs live setlists against full studio discography (always played / never played / rarities)
Tools
get_setlists(artist, year?, city?, limit?)
Browse recent setlists before creating a playlist.
create_playlist_from_setlist(artist, year?, venue?, city?, mode?)
Create a Spotify playlist from a setlist. Returns playlist URL, matched/unmatched track counts.
diff_setlist_vs_discography(artist)
Compare last 10 setlists against full Spotify discography.
Installation
Prerequisites
- Python 3.11+
- setlist.fm API key — free
- Spotify Developer app — free
1. Clone and install
git clone https://github.com/emarkou/setlistify.git
cd setlistify
python3.11 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
2. Configure credentials
cp .env.example .env
Edit .env:
SETLISTFM_API_KEY=your_setlistfm_key
SPOTIFY_CLIENT_ID=your_spotify_client_id
SPOTIFY_CLIENT_SECRET=your_spotify_client_secret
SPOTIFY_REDIRECT_URI=http://localhost:8888/callback
setlist.fm: Register at https://www.setlist.fm/settings/api, copy the API key.
Spotify:
- Go to https://developer.spotify.com/dashboard
- Create an app → select Web API
- Add
http://localhost:8888/callbackas a Redirect URI - Copy Client ID and Client Secret
3. Register with Claude Code
claude mcp add setlistify \
/path/to/setlistify/.venv/bin/python \
-- /path/to/setlistify/server.py
Or add to ~/.claude/mcp.json:
{
"mcpServers": {
"setlistify": {
"command": "/path/to/setlistify/.venv/bin/python",
"args": ["/path/to/setlistify/server.py"]
}
}
}
4. Register with Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"setlistify": {
"command": "/path/to/setlistify/.venv/bin/python",
"args": ["/path/to/setlistify/server.py"],
"env": {
"SETLISTFM_API_KEY": "your_key",
"SPOTIFY_CLIENT_ID": "your_client_id",
"SPOTIFY_CLIENT_SECRET": "your_client_secret",
"SPOTIFY_REDIRECT_URI": "http://localhost:8888/callback"
}
}
}
}
5. First run — Spotify OAuth
On first use a browser window opens for Spotify authorisation. Log in and allow access. Token is cached locally in .cache and reused automatically.
If auth expires, delete .cache and retry.
Test without Claude
npx @modelcontextprotocol/inspector \
/path/to/setlistify/.venv/bin/python \
/path/to/setlistify/server.py
Opens a browser UI at http://localhost:6274 to call tools interactively.
Project structure
setlistify/
├── server.py # MCP server and tool definitions
├── setlistfm.py # setlist.fm API client
├── spotify.py # Spotify/spotipy wrapper
├── matching.py # Fuzzy track title matching
├── requirements.txt
├── .env.example
└── LICENSE
License
MIT
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。