Skip to main content
Glama
rollecode

lastfm-mcp

by rollecode

get_chart_top_artists

Read-onlyIdempotent

Retrieve Last.fm's current top artists chart. Use limit and page to paginate results.

Instructions

Get the most popular artists 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.5/5.0
Behavior3/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so no safety contradiction exists. The description adds only the temporal nuance "right now" and does not discuss pagination behavior, response shape, or potential limitations; this is acceptable but not rich.

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, with a single purpose sentence followed by a minimal parameter list. No words are wasted, and it remains informative for the tool's simplicity.

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 read-only list tool with an output schema and annotations, the description covers the operation and both parameters. It could be more explicit that this is the global Last.fm chart rather than user- or region-specific, but the name and "right now" mostly convey that.

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

Parameters4/5

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

Schema description coverage is 0%, so the description carries the burden of explaining the parameters. It does so adequately: limit is "Results per page" and page is "Which page of results to fetch." This adds meaning beyond the bare integer types and defaults.

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 clear action and resource: "Get the most popular artists on Last.fm right now." It distinguishes from chart top tracks/tags by resource, but does not explicitly differentiate from user or geo-scoped artist tools, so it loses the last point.

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

Usage Guidelines2/5

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

There is no guidance on when to use this tool vs. alternatives like get_user_top_artists, get_geo_top_artists, or get_chart_top_tracks. The context is implied by the name, but no exclusions or selection criteria are stated.

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