Skip to main content
Glama
rollecode

lastfm-mcp

by rollecode

get_chart_top_tracks

Read-onlyIdempotent

Retrieve the currently most popular tracks on Last.fm. Specify page and limit to control results, enabling analysis of trending music charts.

Instructions

Get the most popular tracks on Last.fm right now.

Args: limit: Results per page. page: Which page of results to fetch.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNo
limitNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.9/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint, so the safe read-only nature is well covered. The description adds a small behavioral cue with 'right now,' implying the chart is time-sensitive and may change. It does not mention rate limits or pagination behavior beyond parameter meanings, but for this simple read-only chart tool the annotation coverage lowers the burden.

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 compact and front-loaded: one clear sentence announces the tool's purpose, followed by concise parameter explanations. There is no redundant or filler content; every sentence earns its place.

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

Completeness4/5

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

For a simple paginated read-only chart tool with strong annotations and an output schema, the description covers the core purpose and parameters well. It is slightly incomplete given the large sibling set, because it does not explicitly state that this is the global Last.fm chart or contrast it with geo-, tag-, or user-specific track tools.

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

Parameters5/5

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

Although the input schema has 0% description coverage, the tool description fully compensates by explaining both parameters: 'limit: Results per page' and 'page: Which page of results to fetch.' This adds meaningful semantics beyond the schema's types and defaults, giving an agent enough information to construct correct calls.

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

Purpose4/5

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

The description states a specific action and resource: 'Get the most popular tracks on Last.fm right now.' This is clear and points to the global chart rather than user- or geo-scoped track listings. However, it does not explicitly name or differentiate sibling tools like get_chart_top_artists or get_geo_top_tracks, so it falls just short of full differentiation.

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

Usage Guidelines3/5

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

The phrase 'right now' implies current global popularity, which suggests when to use this tool versus user, geo, or tag-specific track tools. There is no explicit guidance about when not to use it or which alternative to prefer in other contexts, leaving the usage decision mostly to inference.

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