Last.fm MCP Server - Search music, manage libraries, and scrobble tracks
Last.fm MCP Server - Search music, manage libraries, and scrobble tracks. The scrobblercontext mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 14 defined tools rather than through you.
A Model Context Protocol (MCP) server that provides access to Last.fm's music database. Built in Swift, it enables AI assistants to search for music, manage user libraries, and scrobble tracks.
Everything the assistant can do here goes through one of these:
authenticate_browser — Start OAuth flow in browserset_session_key — Set existing session keycheck_auth_status — Check authentication statusrestore_session — Restore saved sessionlogout — Clear authenticationsearch_artist — Search for artistsget_artist_info — Get artist details & biographyget_similar_artists — Find similar artistsget_artist_correction — Get corrected artist nameget_artist_tags — Get artist tagsget_artist_top_albums — Get artist's top albumsget_artist_top_tracks — Get artist's top tracksYou will need 2 environment variables: LASTFM_API_KEY, LASTFM_SECRET_KEY. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.
Installation goes through your MCP client rather than a global install: point it at scrobblercontext-mcp on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.
Plenty of browser automation servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Scrobblercontext's toolset — authenticate_browser, set_session_key, check_auth_status and 11 more — is a fair guide to whether it matches your workflow. It is maintained by tfmart; worth a glance at recent repository activity before you build anything load-bearing on it.
SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.
| Tool | What it does |
|---|---|
| authenticate_browser | Start OAuth flow in browser |
| set_session_key | Set existing session key |
| check_auth_status | Check authentication status |
| restore_session | Restore saved session |
| logout | Clear authentication |
| search_artist | Search for artists |
| get_artist_info | Get artist details & biography |
| get_similar_artists | Find similar artists |
| get_artist_correction | Get corrected artist name |
| get_artist_tags | Get artist tags |
| get_artist_top_albums | Get artist's top albums |
| get_artist_top_tracks | Get artist's top tracks |
| add_artist_tags | Add personal tags (requires auth) |
| remove_artist_tag | Remove personal tag (requires auth) |
{
"mcpServers": {
"scrobblercontext": {
"command": "npx",
"args": ["-y", "scrobblercontext-mcp"],
"env": {
"LASTFM_API_KEY": "your-value",
"LASTFM_SECRET_KEY": "your-value"
}
}
}
}Add to claude_desktop_config.json, then restart Claude Desktop.
| Variable | Description | Required |
|---|---|---|
| LASTFM_API_KEY | Credential the server authenticates with. | Yes |
| LASTFM_SECRET_KEY | Credential the server authenticates with. | Yes |
Microsoft's official browser automation server — drive a real browser through the accessibility tree, no screenshots needed.
Industrial-strength web extraction — render, scrape, crawl and search entire sites into clean markdown.
The original Chromium automation reference server — simple, screenshot-driven browser control.
Give your coding agent the full DevTools toolbox: traces, network, console, heap snapshots and Lighthouse.
Puppeteer-powered browser control that drives pages from the accessibility tree instead of pixels.
Cloud browsers for AI agents — automation sessions that run in Browserbase's fleet, not on your machine.