lightning-fm-mcp
Server Quality Checklist
Latest release: v0.1.5
- Disambiguation5/5
Each tool has a distinct purpose: searching the catalog, looking up an artist, and reading live now-playing data. There is no practical overlap in what an agent would select them for.
Naming Consistency5/5All three tools follow a clear verb_noun convention: search_catalog, get_artist, get_now_playing. The naming pattern is predictable and consistent.
Tool Count5/5Three tools is a tight, well-scoped set for a read-only music catalog API. Each tool covers a distinct high-level user need without unnecessary bloat.
Completeness4/5The core domain is covered: catalog browsing/search, artist lookup with tracks, and live playback status. A direct track-by-ID detail lookup is a minor gap, but the other tools can work around it through search or artist queries.
Average 4.2/5 across 3 of 3 tools scored.
See the Tool Scores section below for per-tool breakdowns.
- No community issues in the last 6 months
- 16 commits in the last 12 weeks
- No stable releases found
- No critical vulnerability alerts
- No high-severity vulnerability alerts
- No code scanning findings
- CI status not available
This repository is licensed under MIT License.
This repository includes a README.md file.
No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.
Tip: use the "Try in Browser" feature on the server page to seed initial usage.
Add a glama.json file to provide metadata about your server.
If you are the author, simply .
If the server belongs to an organization, first add
glama.jsonto the root of your repository:{ "$schema": "https://glama.ai/mcp/schemas/server.json", "maintainers": [ "your-github-username" ] }Then . Browse examples.
Add related servers to improve discoverability.
How to sync the server with GitHub?
Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.
To manually sync the server, click the "Sync Server" button in the MCP server admin interface.
How is the quality score calculated?
The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).
Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.
Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).
Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.
Tool Scores
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description takes on the full burden. It discloses accepted input formats (display name, hex, npub) and return contents (profile + every published track). It does not describe error handling or what happens on ambiguous matches, and the read-only nature is implied rather than explicit, so a 5 is not warranted.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
A single, efficiently worded sentence that front-loads the action and target, then conveys return value without filler. Every phrase earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a single-parameter lookup with no output schema, the description adequately covers what will be returned (profile + tracks). It leaves a few edge cases unaddressed (e.g., ambiguous names, empty results), but the tool is simple enough that these are minor gaps.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% and the schema already explains the parameter well (partial match ok, formats). The description essentially repeats that information without adding extra semantic context about the parameter, so it meets the baseline but does not exceed it.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose4/5Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states a specific verb ('Look up'), the resource ('artist'), and the accepted identifiers (display name or Nostr pubkey), and further specifies that it returns the profile plus all published tracks. However, it does not explicitly differentiate from sibling tools like search_catalog, so it stops short of a 5.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The intended use is clear: when you need an artist's profile and tracks by name or pubkey, this is the tool. It does not explicitly address when not to use it or mention alternatives, leaving sibling differentiation to inference.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It discloses the live-fetching behavior, the Nostr signature guarantee, the canonical nature of the data, and the default ordering. It does not mention potential latency, relay availability, or result shape, but for a search tool the disclosed traits are substantive and useful.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is three sentences with no filler. It front-loads the core purpose, then efficiently adds key contextual facts (live source, signed results, canonical scope, browse behavior). Every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a search/browse tool with no output schema and no annotations, the description covers purpose, usage, data source, trust properties, and default ordering. It is missing explicit return-format details and error behavior, but the schema covers parameters and the description gives enough context for correct invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters3/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so all parameters are already documented in the schema. The description adds one meaningful behavioral hint—that leaving all filters empty browses the whole catalog—but does not add meaning for individual parameters beyond the schema. Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('Search or browse') and resource ('Lightning FM's Nostr-native music catalog'), and further distinguishes it by specifying the event kind (31337) and the live relay source. This makes it clearly distinct from the sibling tools get_artist and get_now_playing, which focus on singular or current-state data.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
It gives clear usage context: filters can be left empty to browse the entire catalog newest first, and the catalog is live and canonical rather than curated. However, it does not explicitly state when to prefer this tool over the sibling tools or provide exclusion criteria, so it stops short of a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
- Behavior4/5
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It clearly labels the operation as a read, exposes the live/NIP-53 protocol detail, and states what information is returned. It does not mention failure modes, latency, or auth, but for a zero-parameter public read that is a minor gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Conciseness5/5Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single tight sentence that front-loads the verb and resource, then adds protocol and return details. Every clause earns its place with no repetition or fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Completeness4/5Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter read with no output schema, the description needs to explain what the tool returns and does, and it does so concretely (track, stream URL, station status). It could slightly improve by noting what happens when no track is currently on air, but the station status detail partially covers that.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Parameters4/5Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool takes zero parameters, so the schema holds no parameter information for the description to enhance. According to the baseline for zero-parameter tools, this is a Strong case: nothing is missing.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Purpose5/5Does the description clearly state what the tool does and how it differs from similar tools?
The description names a specific verb ('Read'), a specific resource ('current live activity ... Lightning FM publishes'), and the exact data elements returned (track, stream URL, station status). It clearly distinguishes this from sibling search-oriented tools like search_catalog and get_artist by focusing on live, current state rather than catalog lookup.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Usage Guidelines4/5Does the description explain when to use this tool, when not to, or what alternatives exist?
The description says it reads current live activity and the track currently on air, which gives clear context for when to use it. It does not explicitly name sibling alternatives or say when not to use it, but the 'current' vs. search distinction is strong enough that an agent should route correctly.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
GitHub Badge
Glama performs regular codebase and documentation scans to:
- Confirm that the MCP server is working as expected.
- Confirm that there are no obvious security issues.
- Evaluate tool definition quality.
Our badge communicates server capabilities, safety, and installation instructions.
Card Badge
Copy to your README.md:
Score Badge
Copy to your README.md: