Skip to main content
Glama

Get Watchlist

get_watchlist

Retrieve your movie and TV watchlist, optionally filtered by media type or genre, to see what to watch next.

Instructions

Get movie and TV watchlist with optional type and genre filter.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
genreNoOptional genre filter (e.g. 'Sci-Fi', 'Thriller').
limitNoMaximum results to return. Defaults to 8.
media_typeNoOptional filter ('Movie', 'TV Series').

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

B3.2/5.0
Behavior3/5

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

No annotations are provided, so the description carries the behavioral burden. 'Get' implies a non-mutating read and the output schema covers return shape, but nothing is said about empty-watchlist behavior, ordering, or pagination, leaving some gaps.

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?

A single efficient sentence with the core action front-loaded and the filter modifiers trailing. Nothing is wasted, though it is quite terse relative to the guidance it omits.

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 simple read-only getter with an output schema covering return values and fully documented parameters, the description is adequate. The only real gap is the absence of routing guidance against the many sibling retrieval tools.

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 all three parameters are already documented in the schema. The description mentions the type and genre filters but adds no syntax or value guidance beyond that, and omits the limit parameter entirely. Baseline 3 applies when the schema does the heavy lifting.

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?

States a specific verb (Get) and resource (movie and TV watchlist), and notes the filter dimensions. It is clear on its own but does not distinguish itself from siblings like search_media or get_reading_list, so sibling routing is left to inference.

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?

There is no explicit when-to-use or when-not-to-use guidance and no named alternative. 'Optional type and genre filter' hints at usage but never states when an agent should pick this over search_media or curate_for_tonight.

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