Skip to main content
Glama
rollecode

Trakt MCP server

by rollecode

list_shows_anticipated

Read-onlyIdempotent

Find TV shows audiences are anticipating on Trakt. Filter by genre, year, country, and streaming service to discover which anticipated series to track or watch.

Instructions

Get the most anticipated shows.

GET /shows/anticipated

Args: extended: Extended information to include in the response. watchnow: Use "favorites" for streaming on a favorite service of the user. Use "any" for streaming on any service in the user's country. Use "any_all" for streaming on any service in all countries. Use "free" for streaming for free in the user's country. Use "free_all" for streaming for free in all countries. Use "subscriptions" for streaming on any subscription service (Netflix, Hulu, etc) in the user's country. Use "subscriptions_all" streaming on any subscription service in all countries genres: Query parameter. subgenres: Query parameter. years: Query parameter. ratings: Query parameter. start_date: Query parameter. end_date: Query parameter. runtimes: Query parameter. countries: Query parameter. certifications: Query parameter. page: The page number to retrieve limit: The number of items per page. Defaults and maximums vary by endpoint. When pagination parameters are omitted, a low default limit is applied (often 10). When a limit is provided, it is capped at the endpoint maximum (often 250); higher values are clamped rather than rejected. ignore_watched: Ignore watched items. ignore_collected: Ignore collected items. ignore_watchlisted: Ignore watchlisted items.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNo
limitNo
yearsNo
genresNo
ratingsNo
end_dateNo
extendedNo
runtimesNo
watchnowNo
countriesNo
subgenresNo
start_dateNo
certificationsNo
ignore_watchedNo
ignore_collectedNo
ignore_watchlistedNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds useful behavioral context about pagination defaults and clamping behavior for the limit parameter, which goes beyond the schema. However, it doesn't describe the response format or any other behavioral traits like sorting or default ordering.

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

Conciseness3/5

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

The description is front-loaded with the core purpose and endpoint, which is good. The watchnow parameter explanation is verbose and could be more concise, and the repeated 'Query parameter' labels for eight parameters add noise without adding value. It's reasonably structured but not tight.

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

Completeness3/5

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

With 16 parameters, no required parameters, and an output schema present, the description covers the core purpose and pagination behavior but leaves many filter parameters underspecified. The watchnow values are well documented, but the generic 'Query parameter' labels for genres, subgenres, years, ratings, dates, runtimes, countries, and certifications mean an agent would need external knowledge to use them correctly. The output schema exists, so return values don't need explanation, but the filter semantics are incomplete.

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?

Schema description coverage is 0%, so the description carries the full burden of explaining parameters. It provides meaningful explanations for extended, watchnow, page, limit, and the ignore_* flags, with detailed value options for watchnow. However, many parameters (genres, subgenres, years, ratings, start_date, end_date, runtimes, countries, certifications) are only labeled 'Query parameter' with no format or value guidance, leaving significant gaps.

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 opens with 'Get the most anticipated shows' and includes the endpoint path 'GET /shows/anticipated', which clearly identifies the resource and operation. It distinguishes itself from sibling tools like list_movies_anticipated and list_media_anticipated by specifying 'shows', though it doesn't explicitly name those siblings.

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

Usage Guidelines3/5

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

The description implies usage through the endpoint path and the list of filter parameters, but it does not explicitly state when to use this tool versus alternatives like list_shows_popular, list_shows_trending, or list_shows_hot. The watchnow parameter has detailed value guidance, which helps with one specific usage aspect, but overall the when-to-use context is only implied.

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