Skip to main content
Glama

list_songs

List all songs with title, year, chapter, release status, and summary. Optionally filter by chapter slug or release status. Pass full=true to return each song with the complete get_song payload (lyrics, LRC, cover art, story, experience hints) in a single call.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
fullNoWhen true, each song includes the full get_song payload instead of the summary. Lets clients fetch the whole catalog in one call instead of list_songs + get_song per song.
chapterNoFilter by chapter slug (e.g., "awakening", "innocence-heartbreak")
release_statusNoFilter by status: "released", "upcoming", or "archived"

TDQS

A3.9/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries full burden. It discloses the returned fields and the effect of full=true, but does not specify default release_status filtering (e.g., whether archived songs appear by default), pagination behavior, or potential large response sizes. This leaves some behavioral ambiguity beyond what is stated.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences with the primary action front-loaded in the first sentence and the optional full=true behavior in the second. Every word earns its place, with no fluff or redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers the return fields and filters, but without an output schema it does not fully clarify the default behavior when release_status is omitted (does it include archived songs?) or whether results are paginated. These gaps make it somewhat incomplete for a tool intended for bulk catalog retrieval.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema provides 100% coverage with clear descriptions for all three parameters. The description adds the equivalence of full=true to the complete get_song payload, but otherwise repeats what the schema already states, so it adds marginal value over the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'List all songs' with specific fields (title, year, chapter, release status, summary) and distinguishes itself from get_song by offering a bulk mode with full=true. The verb and resource are specific, making the tool's purpose unambiguous.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The phrase 'Pass full=true to return each song with the complete get_song payload... in a single call' provides clear context for when to use this tool instead of making multiple get_song calls. It implies a bulk use case, though it does not explicitly name alternatives or state when not to use it.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.3/5.0
Disambiguation5/5

Each tool targets a distinct resource and action: artist profile, chapter details, curated experience playlist, experience presentation directives, individual song, chapter list, song list, and stream URL refresh. The only potential overlap is between get_song and list_songs with full=true, but descriptions clarify the use cases.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern (get_*, list_*, refresh_*) with snake_case, making it easy to predict tool names and understand their function.

Tool Count5/5

8 tools is well within the ideal range for a read-only music catalog server. Each tool has a clear purpose and the set feels neither bloated nor sparse.

Completeness5/5

The tool surface covers the full user journey: discovering the artist, browsing chapters and songs, retrieving detailed song data, accessing curated experiences, and refreshing stream URLs. No obvious missing operations for a read-only API.

Resources