mcp-lyricscom
Related Servers
Alternatives to mcp-lyricscom
- AlicenseAqualityBmaintenanceAn MCP server that enables searching tracks and fetching lyrics, including time-synced LRC lyrics, from LRCLIB without requiring an API key.394MIT
Related Servers
- AlicenseNot gradedqualityDmaintenanceAn MCP server that enables searching Genius.com for artists, songs, and albums, retrieving song lyrics, and exploring artist discographies through natural language.3MIT
- FlicenseAqualityDmaintenanceMCP server for Suno music generation API that enables generating lyrics and custom songs with style tags, model selection, and automatic polling for task completion.2-
- AlicenseNot gradedqualityCmaintenanceAn MCP server for Spotify control and synchronized lyrics retrieval that enables playback management, queue navigation, and music search capabilities. It also features perception tools for real-time track analysis, including BPM, key detection, and timestamped lyrics.1163Apache 2.0
- AlicenseNot gradedqualityDmaintenanceMCP server that enables AI assistants to search and retrieve music data (songs, lyrics, playlists, albums, artists) from Netease Cloud Music.MIT
- AlicenseNot gradedqualityAmaintenanceMCP server that enables LLMs to search, play, and manage music from multiple platforms (NetEase, QQ, Kugou) and local files, with lyrics retrieval and playback control.MIT
- AlicenseAqualityBmaintenanceThis MCP server provides tools to search for songs, artists, and random records from the Bide & Musique catalogue. It offers read-only access to tens of thousands of French songs with no authentication needed.8557MIT
TDQS
Scored across 3 tools
Each tool has a clearly distinct purpose: search_songs finds by title, search_lyrics finds by lyric fragment, and get_lyrics retrieves the full text for a known song id. The descriptions explicitly state when to use each and how they chain together, so there is no real ambiguity.
All tool names follow a consistent verb_noun pattern with snake_case: search_songs, search_lyrics, and get_lyrics. The naming convention is uniform and immediately understandable.
Three tools is an appropriate size for a focused lyrics lookup service. Each tool performs an essential step in the workflow: search by title, search by lyric content, and fetch full lyrics, with no redundant tools.
The tool set covers the full user-visible lifecycle for a lyrics service: finding a song by title, finding a song from a remembered lyric fragment, and retrieving the full lyrics. Pagination and no_lyrics cases are explicitly handled, leaving no obvious dead ends in the core workflow.