lastfm-mcp
An MCP server for the Last.fm API that enables LLM agents to access music data including user profiles, listening history, top charts, search, and artist/album/track metadata.
README
Last.fm MCP Server
An MCP server for the Last.fm API. Enables LLM agents to access music data: user profiles, listening history, top charts, search, and artist/album/track metadata.
Features
User Tools
lastfm_get_user_info— User profile: country, scrobble count, registration date.lastfm_get_recent_tracks— Recently played tracks (including now playing).lastfm_get_user_top_artists— Top artists for a time period.lastfm_get_user_top_albums— Top albums for a time period.lastfm_get_user_top_tracks— Top tracks for a time period.lastfm_get_user_loved_tracks— Loved (favorited) tracks.
Search Tools
lastfm_search_artist— Search artists by name.lastfm_search_album— Search albums by name.lastfm_search_track— Search tracks by name.
Artist Tools
lastfm_get_artist_info— Artist details: bio, tags, listener/scrobble stats, similar artists.lastfm_get_similar_artists— Similar artists with match scores.lastfm_get_artist_top_tracks— Artist's top tracks.lastfm_get_artist_top_albums— Artist's top albums.
Album Tools
lastfm_get_album_info— Album details: tracklist, tags, description.
Track Tools
lastfm_get_track_info— Track details: duration, tags, listener/scrobble stats.lastfm_get_similar_tracks— Similar tracks with match scores.
Configuration
You will need a Last.fm API key. Get one for free at last.fm/api/account/create.
Claude Desktop
-
Open the Claude Desktop configuration file located at:
- On macOS:
~/Library/Application Support/Claude/claude_desktop_config.json - On Windows:
%APPDATA%/Claude/claude_desktop_config.json
- On macOS:
-
Add the following:
{
"mcpServers": {
"lastfm": {
"command": "uv",
"args": [
"run",
"--with",
"lastfm-mcp",
"--python",
"3.10",
"lastfm-mcp"
],
"env": {
"LASTFM_API_KEY": "<your-api-key>"
}
}
}
}
-
Locate the command entry for
uvand replace it with the absolute path to theuvexecutable. This ensures that the correct version ofuvis used when starting the server. On a Mac, you can find this path usingwhich uv. -
Restart Claude Desktop to apply the changes.
Cursor
Add to .cursor/mcp.json in your project root:
{
"mcpServers": {
"lastfm": {
"command": "uv",
"args": [
"run",
"--with",
"lastfm-mcp",
"--python",
"3.10",
"lastfm-mcp"
],
"env": {
"LASTFM_API_KEY": "<your-api-key>"
}
}
}
}
Claude Code
claude mcp add lastfm -- uv run --with lastfm-mcp --python 3.10 lastfm-mcp
Make sure LASTFM_API_KEY is set in your environment.
Running Without uv (Using System Python)
If you prefer to use the system Python installation instead of uv, you can install the package from PyPI and run it directly:
-
Install the package using pip:
pip install lastfm-mcp -
Update your configuration to use the installed script directly:
{
"mcpServers": {
"lastfm": {
"command": "lastfm-mcp",
"env": {
"LASTFM_API_KEY": "<your-api-key>"
}
}
}
}
Note: Make sure to use the full path to the lastfm-mcp script if it is not in your system PATH. You can find the path using which lastfm-mcp.
Environment Variables
LASTFM_API_KEY(required): Your Last.fm API key.
Parameters
Top chart tools (lastfm_get_user_top_artists, lastfm_get_user_top_albums, lastfm_get_user_top_tracks) support a period parameter:
| Value | Period |
|---|---|
overall |
All time (default) |
7day |
Last 7 days |
1month |
Last month |
3month |
Last 3 months |
6month |
Last 6 months |
12month |
Last year |
All list tools support pagination via limit and page.
Development
-
Clone the repository and install dependencies:
git clone https://github.com/dkfancska/mcp-lastfm.git cd mcp-lastfm pip install -e . -
Copy
.env.exampleto.envand add your API key:cp .env.example .env -
For testing with the MCP Inspector:
npx @modelcontextprotocol/inspector lastfm-mcp
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.