Skip to main content
Glama
rollecode

seerr-mcp

by rollecode

get_tv_by_tv_id_recommendations

Read-onlyIdempotent

Retrieve recommended TV series for a given TV ID. Input the TV ID to get a list of similar shows, with optional pagination and language settings.

Instructions

Get recommended TV series.

GET /api/v1/tv/{tvId}/recommendations

Args: tv_id: Path parameter. page: Query parameter. language: Query parameter.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNo
tv_idYes
languageNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.7/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. The description adds no behavioral detail beyond that simple purpose and endpoint, omitting what the response contains, how language is interpreted, or any rate-limit/paging behavior.

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 short and front-loads the main purpose with a one-line headline followed by an endpoint and a clean parameter list. There is no unnecessary filler, but the brevity contributes to the missing semantic content.

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 output schema exists, but with two nullable parameters having no described format and no usage guidance, the description is not complete enough for an agent to call the tool correctly. Notably, language and page values are left ambiguous, and no differentiation from similar endpoints is given.

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?

With 0% schema description coverage, the description was expected to fill the gap, but it merely labels each parameter as 'path' or 'query' and repeats its name. It does not explain what page means, what format language uses, or how tv_id maps to a TV-series ID.

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 starts with 'Get recommended TV series,' a clear verb plus resource, and includes the endpoint path. It distinguishes TV vs. movie recommendations, though it could do more to separate it from the sibling tool for similar TV series.

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?

The description provides no guidance about when to call this tool versus get_tv_by_tv_id_similar or the movie recommendation endpoints. It restates the HTTP route and parameters but gives no selection criteria or exclusion cases.

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