WinstonFassett/lyricsgenius-mcp-server
3.3
If you are the rightful owner of lyricsgenius-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
The LyricsGenius MCP Server provides access to song lyrics and artist information from Genius.com using the LyricsGenius library.
Tools
5
Resources
0
Prompts
0
LyricsGenius MCP Server
A Model Context Protocol (MCP) server for accessing song lyrics and artist information from Genius.com via the LyricsGenius library.
Features
- Search for artists and songs on Genius.com
- Get detailed information about artists
- Retrieve song lyrics
- Get artist albums and top songs
- Get album tracks
- Search across different content types (songs, artists, albums, etc.)
Requirements
- Python 3.8+
- LyricsGenius API token (get one from https://genius.com/api-clients)
Installation
-
Clone this repository
git clone <repository-url> cd lyricsgenius-mcp -
Create a virtual environment
uv venv source .venv/bin/activate # On Windows: .venv\Scripts\activate -
Install dependencies
uv pip install -r requirements.txt -
Set up your Genius API token
- Create a copy of
.envand rename it to.env - Replace
your_token_herewith your actual Genius API token
- Create a copy of
Usage
Running the server directly
python server.py
Installing in Claude Desktop
mcp install server.py
Running with MCP development tools
mcp dev server.py
Server Capabilities
Tools
search(query, search_type=None, per_page=10, page=1)- Search Genius for artists, songs, albums or other contentget_lyrics(title, artist=None)- Get lyrics for a song directlyget_artist_songs(artist_identifier, per_page=20, sort="popularity")- Get songs by an artistget_artist_albums(artist_identifier)- Get albums by an artistget_album_tracks(album_identifier)- Get tracks from an album by its ID or name
License
MIT