Skip to main content
Glama
rollecode

Trakt MCP server

by rollecode

get_shows_by_id_certifications

Read-onlyIdempotent

Retrieve certification ratings for a show using its ID or slug to inform viewers about content suitability.

Instructions

Get all show certifications.

GET /shows/{id}/certifications

Args: id: The id/slug of the resource.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.5/5.0
Behavior3/5

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

The annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safe-read profile is covered structurally. The description adds only the 'all' scope and the GET endpoint, with no extra behavioral context such as result shape or content restrictions; it does not contradict the 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 minimal and front-loaded: one purpose sentence, the canonical GET path, and an Args block. No filler or repeated schema information is present.

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 one-parameter, read-only endpoint with an output schema and rich annotations, the description gives enough to invoke it correctly. The main missing piece is how it relates to list_certifications_shows/get_certifications_by_type, but that is more a usage-guideline gap than an invocation blocker.

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

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 0%, but the description compensates by explaining that 'id' is 'the id/slug of the resource,' adding format and referent beyond the bare string type in the schema. It could name the show explicitly, but the endpoint path makes that clear.

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 'Get all show certifications,' a clear verb+resource statement, and the embedded endpoint '/shows/{id}/certifications' pins it to a single show. It does not differentiate itself from sibling list_certifications_shows or get_certifications_by_type, so it stops short of a 5.

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 about when to call this endpoint versus the certification list/type siblings, and no exclusions or alternatives are given. The intended context (fetch certifications for one show by id/slug) is only implied by the endpoint path.

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