Skip to main content
Glama
YangLiangwei

PersonalizationMCP

by YangLiangwei

get_playlist_items

Fetch playlist items (tracks and episodes) using the playlist ID. Supports pagination via limit and offset.

Instructions

Get items (tracks/episodes) in a playlist.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
offsetNo
playlist_idYes
access_tokenNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.6/5.0
Behavior2/5

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

No annotations are provided, so the description carries full responsibility for behavioral disclosure. It only says 'Get items' implying a read operation, but omits authentication requirements (access_token), response format, pagination behavior (limit/offset), or any rate limits.

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?

The description is a single concise sentence with no wasted words, effectively front-loading the core purpose. However, it is under-specified, which slightly reduces the value of its brevity.

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?

Given the tool has 4 parameters, no output schema, and no annotations, the description is far from complete. It doesn't cover pagination, authentication, response structure, or any nuances of playlist item retrieval, leaving an agent with insufficient information to call it correctly.

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?

Schema coverage is 0% because the description mentions no parameters. The schema defines playlist_id, limit, offset, and access_token, but the description adds no meaning to these. For example, it doesn't explain that limit/offset control pagination or that access_token is needed for authentication.

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 clearly states the action (Get) and the resource (items in a playlist), and clarifies the item types (tracks/episodes). It distinguishes from sibling tools that fetch playlists or user-level data, though it doesn't explicitly name alternatives.

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 versus alternatives. It doesn't mention prerequisites like needing a playlist_id from a prior call, nor any context about when this is the right tool (e.g., for listing contents of a specific playlist).

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

Deploy Server

Other Tools