Skip to main content
Glama
ElBeldu

Spotify MCP Server

by ElBeldu

getTopArtists

Fetch a user's top Spotify artists over short-, medium-, or long-term ranges to review their listening statistics.

Instructions

Get the current user's top (most-played) artists over a given time range. This is the closest thing Spotify exposes to listening statistics.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNoMaximum number of artists to return (1-50)
timeRangeNoTime range: short_term (~4 weeks), medium_term (~6 months), or long_term (~1 year). Default: medium_term.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.4/5.0
Behavior3/5

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

With no annotations, the description carries the full behavioral burden. It implies a read-only operation via 'Get' and adds that this is the closest to listening statistics, but does not disclose authentication requirements, rate limits, pagination, or other operational traits.

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?

Two sentences, front-loaded with the core action, and the second sentence earns its place by providing useful context about the tool's unique value. No wasted words.

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 query with rich schema coverage and no output schema, the description is nearly complete. It could mention prerequisites like user authorization, but the phrase 'current user's' implies authenticated context.

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?

Schema description coverage is 100%, so the schema already fully documents limit and timeRange with defaults and enum meanings. The description adds no parameter syntax or format detail beyond what the schema provides.

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?

States a specific verb (Get) and resource (top most-played artists) with scope (given time range). It clearly differentiates from siblings like getTopTracks by saying 'artists', but does not explicitly name any alternative tool.

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?

The description gives no when-to-use guidance, no conditions for selecting this tool over alternatives like getTopTracks or getRecentlyPlayed, and no exclusions. The sentence about listening statistics is context, not usage guidance.

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