Skip to main content
Glama
rollecode

Trakt MCP server

by rollecode

get_calendars_releases_hot_by_start_date_by_days

Read-onlyIdempotent

Retrieve hot movie and TV releases from a start date over a specified number of days. Filter by genre, streaming service, ratings, and other criteria to find trending titles.

Instructions

Get hot releases.

GET /calendars/releases/hot/{start_date}/{days}

Args: start_date: The start date of the calendar. Must be formatted as "YYYY-MM-DD". days: The number of days to retrieve. 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: Query parameter. end_date: Query parameter. runtimes: Query parameter. countries: Query parameter. certifications: Query parameter. type: Narrow the feed to a single media type. Omit to return both. group: Collapse same-show-same-day episodes into a single card (full_season / multiple_episodes). Omit for one entry per episode.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
daysYes
typeNo
groupNo
yearsNo
genresNo
ratingsNo
end_dateNo
extendedNo
runtimesNo
watchnowNo
countriesNo
subgenresNo
start_dateYes
certificationsNo
start_date_queryNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.2/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint false, covering the safety profile. The description adds meaningful behavioral context beyond annotations: detailed watchnow value semantics, the type narrowing behavior, and episode grouping collapse options. It does not mention pagination or rate limits, but the annotation coverage makes the added context sufficient for a read-only feed.

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 one-line purpose and endpoint, and the Args block is reasonably organized. However, it repeats schema parameter names and pads with uninformative 'Query parameter' lines for nine parameters. There are also formatting inconsistencies (e.g., the missing 'for' in 'subscriptions_all streaming'), making it longer and less polished than ideal.

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?

This is a complex 15-parameter tool with no schema-level descriptions, and the definition leaves many filter parameters semantically empty. The required start_date and days are clear, and watchnow/type/group are well described, but the bulk of optional filters lack format, allowed values, or examples. The output schema covers return shape, but the input semantics are not complete enough for confident invocation.

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?

With 0% schema description coverage, the description carries the full burden of explaining parameters. It does explain start_date format, days, watchnow values, type, and group well. However, nine parameters (genres, subgenres, years, ratings, start_date_query, end_date, runtimes, countries, certifications) are only given the placeholder 'Query parameter' with no value format or semantics, leaving a significant gap for an agent trying to use them correctly.

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 a clear imperative 'Get hot releases' and includes the endpoint, identifying the specific resource and operation. However, it does not explicitly distinguish itself from sibling hot-calendar variants (e.g., hot_finales, hot_new, hot_premieres), so the agent must rely on the tool name for differentiation.

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 guidance on when to use this tool versus alternatives such as get_calendars_releases_hot_finales_by_start_date_by_days or get_calendars_by_target_movies_by_start_date_by_days. The description provides parameter details but no exclusions, conditions, or comparison to sibling tools, leaving the selection decision unsupported.

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