Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, email [email protected] and we’ll put it right.

io.github.smeet666/mcp-lyricscom

NPM · MCP-LYRICSCOM · SCANNED AUG 4

Search song lyrics on lyrics.com by word or by title, and fetch full lyrics. No API key required.

Available components

72 Trust /100
Trust breakdown (6 categories)

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →

Supply Chain Security89
  • No malware found by supply-chain analysis.Pass
  • Only part of the dependency tree could be resolved (117 of 122), so this covers what we could see, not the whole tree.Partial
  • No install/post-install scripts declared.Pass
  • Only part of the dependency tree could be resolved (117 of 122), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency97
  • Source repository is publicly reachable at the declared URL. View diagnostics → Pass
  • Cryptographically verified build provenance (signed, bound to smeet666/mcp-lyricscom). View diagnostics → Pass
  • Clear OSI-approved license (MIT).Pass
  • Actively maintained (last published 0 days ago).Pass
  • Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
Schema Quality & AI Usability57
  • AI-judged instruction clarity (good).Pass
  • Context-footprint check failed: tool/resource definitions use about 834 tokens (~278/item across 3 items; 3 tools + 0 resources), over budget; trim descriptions and params. See how to fix → Fail
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management0
  • Stability not yet verified: not enough scan history yet (needs a 30-day window).Unverified
Tool Coverage96
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 87% of tool parameters carry a description.Partial
  • Structured output schemas are declared (100% of tools); any adoption earns full credit.Pass
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass

Unverified: 1 category

A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · mcp-lyricscom

# add to Claude Code
claude mcp add smeet666-mcp-lyricscom -- npx -y mcp-lyricscom
# add to Codex CLI
codex mcp add smeet666-mcp-lyricscom -- npx -y mcp-lyricscom
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "smeet666-mcp-lyricscom": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "mcp-lyricscom"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add smeet666-mcp-lyricscom --command npx --arg -y --arg mcp-lyricscom
# ~/.hermes/config.yaml
mcp_servers:
  smeet666-mcp-lyricscom:
    command: "npx"
    args: ["-y", "mcp-lyricscom"]
// mcp.json
{
  "mcpServers": {
    "smeet666-mcp-lyricscom": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-lyricscom"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 3 Aug 26 72

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 4 Aug 2026 · Analysed npm/[email protected]

Provenance verified

Ecosystem: npm · Outcome: verified

Reason: verified

Source repo:
smeet666/mcp-lyricscom
Certificate issuer:
https://token.actions.githubusercontent.com
Certificate SAN:
https://github.com/smeet666/mcp-lyricscom/.github/workflows/publish.yml@refs/tags/v1.0.1
Rekor log index:
2336579919
Predicate type:
https://slsa.dev/provenance/v1
Subject digest:
sha512:70d2673ca15bd2236b9bf04e1f626d9af33a36e1bdece419c698f7a2822447f93a43831176a21245dac668b1c235b2c6a0f6b0611131bc6f6a7f35f16
Discovery method:
attestation_endpoint
Dependencies 117 packages

117 packages in the resolved dependency tree · 98 deprecated · 31 stale.

The dependency tree was only partially resolved, so these counts may be incomplete.

MCP tools — 3 exposed · ~738 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
get_lyrics ~247

Fetch the full lyrics of one song from lyrics.com, given the song id or URL returned by search_lyrics or search_songs. Lyrics can be long, so the response is truncated by default: check 'truncated' and call again with 'offset' set to 'next_offset' to continue reading. Some lyrics.com pages legitimately have no lyrics on file; those come back with status "no_lyrics" and an empty lyrics field, which is a valid answer and not an error, so do not retry them. Always cite 'source_url' and the artist when showing lyrics to a user.

NameTypeReqDescription
highlightstringOptional word. When set, the response reports whether it appears in the lyrics and on which line.
idstringlyrics.com numeric song id, as returned by the search tools. Preferred over 'url'.
max_charsintegerMaximum characters of lyrics text to return in this call.
offsetintegerCharacter offset to resume from, for lyrics longer than max_chars.
urlstringFull lyrics.com song URL. Only www.lyrics.com URLs are accepted. Ignored when 'id' is given.
NameTypeReqDescription
artiststring|nullyes
attributionstringyesReady-to-display credit line.
highlightyes
idstringyes
line_countintegeryes
lyricsstringyesSlice of the lyrics text. Empty when status is 'no_lyrics'.
next_offsetyes
offsetintegeryes
returned_charsintegeryes
sourcestringyes
source_urlstringyes
statusstringyes
titlestring|nullyes
total_charsintegeryes
truncatedbooleanyes

No examples provided.

search_lyrics ~291

Search lyrics.com for songs whose lyrics contain a given word or phrase. Returns matching songs with artist, title, a short excerpt of the line where the word appears, and the lyrics.com id and URL needed to fetch the full text with get_lyrics. Use this when someone remembers a fragment of lyrics but not the song, or wants songs mentioning a word or theme. One call returns one page of lyrics.com results; to see more, increase 'page' rather than 'limit'. lyrics.com also returns loose and title-only matches, so results are filtered locally to keep only songs where the word genuinely appears in the lyrics. Set 'verify' to "none" to see the raw, unfiltered list.

NameTypeReqDescription
include_excerptbooleanInclude the matching lyric line excerpt in each result.
limitintegerMaximum songs to return from this page.
pageintegerResult page on lyrics.com. Each page holds up to 24 raw results.
querystringyesWord or short phrase to look for inside the lyrics, for example 'autrefois'.
verifystringHow to confirm the query really appears in the lyrics. 'snippet' checks the excerpt lyrics.com already returned and costs nothing. 'full' fetches up to 5 song pages and checks the complete lyrics, wh…
NameTypeReqDescription
filtered_outintegeryesRows dropped because the query was not found in their lyrics.
has_morebooleanyes
next_pageyes
notesarrayyesCaveats worth knowing, such as a cache hit or partial verification.
pageintegeryes
querystringyes
raw_result_countintegeryesRows lyrics.com returned before local filtering and deduplication.
resultsarrayyes
sourcestringyes

No examples provided.

search_songs ~200

Find songs on lyrics.com by their title. Returns candidate songs with artist, album, year, and the lyrics.com id and URL. Use this when someone names a song and you need its id to call get_lyrics, or to tell covers and versions by different artists apart. An optional 'artist' narrows the list. lyrics.com searches titles and lyrics together, so results are ranked and filtered locally by title match; use match="strict" to keep only genuine title matches.

NameTypeReqDescription
artiststringOptional artist name, matched case-insensitively against each result.
limitinteger
matchstring'strict' keeps only results whose title matches the query as a whole title, ignoring suffixes such as '(Remastered)'. 'loose' keeps anything lyrics.com returned, best match first.
pageinteger
titlestringyesSong title, or part of it.
NameTypeReqDescription
artist_filterstring|nullyes
filtered_outintegeryes
has_morebooleanyes
next_pageyes
notesarrayyes
pageintegeryes
raw_result_countintegeryes
resultsarrayyes
sourcestringyes
titlestringyes

No examples provided.