Skip to main content
Glama
rollecode

Trakt MCP server

by rollecode

get_shows_by_id_seasons_by_season_people

Read-onlyIdempotent

Retrieve all people credited for a specific season of a show, including cast and crew. Ideal for identifying actors, directors, and writers per season.

Instructions

Get all people for a season.

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

Args: id: The id/slug of the resource. season: Season number extended: Extended information to include in the response.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
seasonYes
extendedNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.2/5.0
Behavior3/5

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

Annotations already declare this as read-only, idempotent, and non-destructive, so the safety profile is covered. The description adds that it returns 'all people' for a season, which is useful but does not disclose pagination, response shape, or any side effects. No contradiction with annotations exists.

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 short and front-loaded with a clear one-sentence purpose, followed by the endpoint and a structured Args list. It avoids filler and each section serves a purpose, though the endpoint line partially duplicates the tool name.

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?

For a simple read-only GET with an output schema and safety annotations, the description covers the basics: what it does, the endpoint, and parameter meanings. It lacks guidance on selecting this tool among similar people-related endpoints and leaves 'extended' underspecified, which prevents full completeness.

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 provides brief but meaningful explanations for id, season, and extended, though 'extended' remains vague and does not specify valid values or behavior. This is adequate but not rich enough to earn a higher score.

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 states a specific verb and resource: 'Get all people for a season.' The endpoint path makes the scope explicit. It does not explicitly differentiate from sibling tools like get_shows_by_id_people, but the season qualifier provides enough distinction for a clear purpose.

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 given about when to use this tool versus alternatives such as get_shows_by_id_people or get_shows_by_id_seasons_by_season_episodes_by_episode_people. There are no stated conditions, exclusions, or use-case context beyond the basic action.

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