Skip to main content
Glama
rollecode

Trakt MCP server

by rollecode

get_people_by_id_shows

Read-onlyIdempotent

Retrieve show credits for a person by Trakt ID or slug, returning their cast and crew roles across TV shows.

Instructions

Get show credits.

GET /people/{id}/shows

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

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
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
Behavior2/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint false. The description adds no additional behavioral context such as scoping, pagination, authentication requirements, or response contents, so it provides no value beyond the structured annotations.

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 very compact: a one-line summary, the endpoint, and argument definitions. Every line earns its place and the primary action is front-loaded.

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?

An output schema exists, so return-value documentation is not required. However, the optional extended parameter is underdefined and there is no usage context, making this minimally adequate for a simple 2-parameter GET tool.

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

Parameters2/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 clarifies that id is the 'id/slug of the resource', which is useful, but 'extended: Extended information to include in the response' is tautological and does not explain what extended values are accepted.

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 states a specific verb and resource: 'Get show credits' for a person. This clearly distinguishes the tool from siblings like get_people_by_id_movies and get_people_by_id, even though it does not name them explicitly.

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 about when to use this tool versus alternatives, such as get_people_by_id_movies or get_people_by_id. The agent must infer the intended use entirely from the name and terse description.

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