Skip to main content
Glama

pause

Pause playback on your active Spotify device to stop music instantly and regain control.

Instructions

Pause playback on the user's active Spotify device.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.2/5.0
Behavior3/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It does specify that the action applies to the user's active device, which is a real behavioral constraint, but it does not disclose edge cases such as behavior when nothing is playing, whether the command is idempotent, or what happens if no active device exists. This is a moderate gap for a state-changing tool.

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 a single, front-loaded sentence with no filler. Every word contributes to understanding the tool's action and target, achieving maximum conciseness.

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 no-parameter playback control with an output schema, this description is nearly complete. It identifies the action, the target device, and the user context. It lacks explicit error-handling expectations or idempotency notes, but these are lesser concerns given the tool's simplicity and the presence of an output schema to describe results.

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?

The tool takes zero parameters, so the baseline is 4. The description adds nothing about parameters because none exist, and no parameter-specific guidance is needed.

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

Purpose5/5

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

The description uses a specific verb ('Pause') and names the exact resource ('playback on the user's active Spotify device'), making it unambiguous and distinct from sibling tools like resume or skip_next. Even without opening schemas, an agent knows exactly what this tool does.

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

Usage Guidelines4/5

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

The description clearly implies when to use it (when playback should be halted) and names the target condition ('active Spotify device'), which is a clear usage context. It does not explicitly exclude alternatives like stop or toggle, but for a simple control this is an acceptable level of guidance.

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