Skip to main content
Glama
rollecode

Trakt MCP server

by rollecode

get_shows_updates_id_by_start_date

Read-onlyIdempotent

Retrieve Trakt IDs of shows updated since a specified start date. Use this to identify changed shows for incremental sync and catalog updates.

Instructions

Get recently updated show Trakt IDs.

GET /shows/updates/id/{start_date}

Args: start_date: UTC date to start checking for updates. 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.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNo
limitNo
start_dateYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare the operation as read-only, idempotent, and non-destructive. The description adds valuable behavioral context beyond annotations by explaining pagination defaults, endpoint maximums, and that limit values are clamped rather than rejected.

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

Conciseness5/5

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

The description is compact and front-loaded with the primary purpose. Each sentence earns its place: the endpoint path, the parameter list, and the pagination behavior note are all relevant without filler.

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 GET endpoint with an output schema, the description covers the endpoint, all parameters, and key behavioral details. A minor gap is that it does not specify the exact date format expected for start_date beyond 'UTC date.'

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

Parameters5/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 for parameter meaning. It clearly documents start_date as a UTC date, page as the page number, and limit with default behavior, maximum capping, and clamping behavior.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with 'Get recently updated show Trakt IDs,' which states a specific verb, resource, and output type. This clearly distinguishes it from sibling tools that return full update objects or IDs for other media types.

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

Usage Guidelines4/5

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

The description conveys clear usage context: call this endpoint with a UTC start_date to retrieve recently updated show IDs. It does not explicitly name alternatives or exclusions, but the ID-focused wording implies when this variant should be chosen over the full-updates sibling.

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