Skip to main content
Glama
ElBeldu

Spotify MCP Server

by ElBeldu

getNowPlaying

Retrieve the currently playing track on Spotify, along with device and volume details, to check playback status.

Instructions

Get information about the currently playing track on Spotify, including device and volume info

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

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?

With no annotations and no output schema, the description carries the full disclosure burden. It usefully reveals that the response includes device and volume info, but says nothing about auth requirements, behavior when nothing is playing (null/empty), or rate limits, leaving meaningful behavioral questions open.

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

Conciseness4/5

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

One tightly written sentence with no filler, and the core purpose is front-loaded before the payload detail. It is appropriately sized for a simple zero-argument read, though it is somewhat sparse.

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?

For a zero-param read tool this covers the essentials of what is returned, but with no annotations and no output schema, the edge cases (nothing playing, private session, missing device) and the shape of the returned track object remain unaddressed.

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?

There are zero parameters, so there is no parameter semantics to explain; the baseline for a parameterless tool is 4. The description correctly avoids inventing arguments that don't exist.

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 gives a specific verb ('Get') and resource ('currently playing track on Spotify'), which lets an agent distinguish it from past-oriented siblings like getRecentlyPlayed. It does not explicitly name or contrast any sibling tool, so it stops 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?

Usage is only implied: an agent can infer it should call this when it needs the live playback state. There is no explicit when-to-use, when-not-to-use, or mention of the adjacent alternatives (getQueue, getRecentlyPlayed, getAvailableDevices) that cover overlapping needs.

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