Search tracks on LRCLIB and fetch plain or time-synced (LRC) lyrics. No API key.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent — or use 1-click editor setup below.
💡 Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
LRCLIB is a free, open database of song lyrics, built by the people who use it and offered to anyone without a key or an account. It holds two forms of the words: the plain text of a song, and the LRC form, where every line carries the moment it is sung, which is what a karaoke display or a lyrics panel follows along with. A track is filed there by its title, its artist, its album and its duration, so the several releases of one song sit side by side.
This server connects a chat client to that database. You can search for a track by title, artist or album, read the plain words of a song, read its time-synced lines with their timestamps, and check the metadata of one release before reading it. It needs no API key and no account.
One-click install
Claude Code
Claude Desktop, Cursor, and any client using the standard config format
Node 24 or later is required, and no environment variable has to be set.
-i keeps stdin open, which is where the protocol travels, and -t is left out
because a TTY rewrites the stream. The container needs outbound HTTPS to
lrclib.net, and nothing else: no volume, no port, no credential.
Download mcp-lrclib-2.0.1.mcpb from
the latest release and
open it. A client that supports MCP bundles installs it on its own, with no npm
and no configuration file to edit. The bundle carries its dependencies, so
nothing is fetched at install time.
The ordinary path runs from a search to a reading: search_tracks names an id,
and get_lyrics takes that id.
| Tool | What it does |
|---|---|
search_tracks | Finds tracks by title, artist or album, with their metadata. |
get_lyrics | Reads the words of one track, plain or with their timestamps. |
get_track | Reads the metadata of one track by its id, without the words. |
LRCLIB files a track by its metadata, so a search reaches a song through its title, its artist or its album. A word remembered from inside a song finds nothing there.
search_tracksFinds the tracks whose metadata matches, in one free-text search or in fields of their own. Several releases of one song come back side by side, and their album and duration tell them apart.
| Argument | Type | Required | What it does |
|---|---|---|---|
query | string, 1 to 200 characters | no | Free-text search, as in nino ferrer le sud. |
track_name | string, up to 200 characters | no | Song title, for a search by field. |
artist_name | string, up to 200 characters | no | Artist name, for a search by field. |
album_name | string, up to 200 characters | no | Album name, to narrow a search by field. |
limit | integer, 1 to 50, default 10 | no | Rows to serve. LRCLIB answers up to 20 per search. |
Pass query, or one of the three fields.
In return: rows carrying id, which get_lyrics and get_track take;
track_name and artist_name; album_name and duration_seconds, which tell
two releases of one song apart; instrumental; has_plain_lyrics and
has_synced_lyrics, so timed lines can be checked for before they are asked
for; and source_url. Alongside come result_count and total_available, the
tracks LRCLIB served before limit was applied. album_name and
duration_seconds are null on a track filed without them, and the rows carry
no words at all: get_lyrics reads those.
get_lyricsReads the words of one track, either as plain text or as LRC lines carrying the moment each one is sung. Long lyrics are served a slice at a time, resuming at a line boundary.
| Argument | Type | Required | What it does |
|---|---|---|---|
id | integer, positive | no | The LRCLIB track id, as search_tracks returned it. |
artist_name | string, up to 200 characters | no | Artist name, matched exactly. Needed when id is absent. |
track_name | string, up to 200 characters | no | Song title, matched exactly. Needed when id is absent. |
album_name | string, up to 200 characters | no | Album name, to pick between releases. |
duration_seconds | number, positive | no | Track duration, to pick between versions of differing length. |
format | plain, synced or both, default plain | no | Which form of the words to serve. |
max_chars | integer, 200 to 20000, default 6000 | no | Characters of text to serve in this call. |
offset | integer, 0 or more, default 0 | no | Character offset to resume from. |
In return: status, which reads ok, instrumental for a track with no
words to sing, or no_lyrics for one filed without them; track with its id,
title, artist, album, duration and source_url; plain_lyrics; synced_lyrics
as raw LRC text and synced_lines as a list of { time_seconds, text }, with
synced_lines_truncated when the slice cut them. The reading is described by
paginated_form, total_chars, returned_chars, offset, next_offset and
truncated: pass next_offset back to read on, and null there means the end.
attribution is the line to cite when the words are shown. A status of
instrumental is a complete answer.
get_trackReads the metadata of one track from its id, leaving the words aside. It confirms a release before the words are asked for, and it resolves an id carried over from earlier in a conversation.
| Argument | Type | Required | What it does |
|---|---|---|---|
id | integer, positive | yes | The LRCLIB track id, as search_tracks returned it. |
In return: track, holding the fields a search row carries, and
duration_formatted as m:ss, which is null when the track is filed without a
duration. has_plain_lyrics and has_synced_lyrics say which forms
get_lyrics can serve for it.
Every variable is optional. Set them in the env block of your client config.
No reviews yet — be the first to share how this listing worked for you.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/mcp-lrclib)<a href="https://allmcps.com/mcp/mcp-lrclib"><img src="https://allmcps.com/api/badge/mcp-lrclib?style=directory" alt="MCP Lrclib on AllMCPs" /></a>