Skip to main content
Glama
rollecode

Trakt MCP server

by rollecode

get_shows_by_id_seasons_by_season_stats

Read-onlyIdempotent

Fetch detailed statistics for a specific TV show season, such as ratings, votes, and viewer counts, by supplying the show ID and season number.

Instructions

Get season stats.

GET /shows/{id}/seasons/{season}/stats

Args: id: The id/slug of the resource. season: Season number

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
seasonYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/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 known. However, the description adds no further behavioral context—it does not mention authentication requirements, rate limits, or what kind of statistics are returned. The endpoint is redundant with the tool name and adds no behavioral detail beyond annotations.

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 extremely concise, front-loaded with the main purpose and then the endpoint and args. It wastes no words, though the args section partly duplicates the schema and could be trimmed. Still, it is appropriately sized for a minimal tool.

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?

The presence of an output schema reduces the need to describe return values, but the description does not explain what 'stats' specifically encompass (e.g., ratings, play counts, sentiment) or how they differ from other stats endpoints like get_shows_by_id_stats. This leaves an agent uncertain when choosing between closely related season endpoints.

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 0%, so the description must compensate. It explains that 'id' is 'The id/slug of the resource' (useful) and 'season' is 'Season number' (redundant with the integer type). It doesn't clarify range, zero-based vs one-based numbering, or other format details, but it does provide some meaning beyond the bare schema.

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 verb 'Get' and the resource 'season stats', which is specific enough to distinguish from adjacent endpoints like season info or ratings. Including the endpoint path reinforces the purpose, though it does not explicitly name any sibling tool to differentiate against.

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 is provided on when to use this tool versus alternatives such as get_shows_by_id_stats or get_shows_by_id_seasons_by_season_info. The endpoint path implies it returns statistics, but there is no explicit context about when season stats are needed vs other season-related data.

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