Skip to main content
Glama
ElBeldu

Spotify MCP Server

by ElBeldu

resumePlayback

Continue Spotify playback on the active device, optionally specifying a device ID. Use to restart paused audio through the Spotify MCP Server.

Instructions

Resume Spotify playback on the active device

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
deviceIdNoThe Spotify device ID to resume playback on

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations, the description carries the full behavioral burden, yet it discloses nothing about prerequisites (Spotify Premium, an active device, an existing paused track) or failure behavior when no device is available. Only the basic effect 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.

Conciseness4/5

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

One short, front-loaded sentence with no filler — the core action and scope come first. It is efficient, though it is arguably too terse to earn full marks given the missing prerequisite context.

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

Completeness2/5

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

For a playback-control tool with no annotations and no output schema, the description omits the context an agent needs to call it correctly, such as premium/active-device requirements and what happens if nothing is paused. It is not adequate for the complexity of the operation.

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 single deviceId parameter is already fully documented, which sets the baseline at 3. The description adds nothing about the parameter and arguably introduces mild tension by saying "active device" while the schema allows an explicit deviceId.

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 names a specific verb ("Resume") and resource ("Spotify playback") and adds a scope qualifier ("on the active device"). It is clear what the tool does, but it never distinguishes itself from the closely named siblings playMusic and pausePlayback, so the agent must infer the boundary.

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?

Usage is only implied by the verb "Resume" — there is no statement of when to prefer this over playMusic, nor any prerequisite such as an already-existing paused session or an active device. No alternative or exclusion is named.

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