Skip to main content
Glama

create_playlist

Create a new music playlist by specifying a title, optional description, and toggling private or collaborative settings.

Instructions

Create a new playlist.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleYes
is_privateNo
descriptionNo
is_collaborativeNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.3/5.0
Behavior2/5

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

No annotations provided, so the description must convey behavioral traits. It omits any mention of permissions, side effects, or return value for this creation operation.

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

Conciseness2/5

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

Extremely concise (4 words) but under-specified. It lacks structure and fails to front-load critical usage information, making it insufficiently informative.

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

Completeness1/5

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

Given no output schema and no annotations, the description is highly incomplete. It does not clarify what happens upon success, error conditions, or how the playlist is created (e.g., for current user?).

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

Parameters1/5

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

With 0% schema description coverage, the description does not explain the meaning of parameters like description, is_private, or is_collaborative. The minimal text adds no parametric insight.

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 'Create a new playlist' clearly states the verb and resource, distinguishing it from update/delete tools. However, it lacks specificity about the scope (e.g., user's playlist or global).

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?

No guidance on when to use this tool vs alternatives like update_playlist or add_tracks_to_playlist. No prerequisites or context provided.

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