Skip to main content
Glama
rollecode

Trakt MCP server

by rollecode

list_movies_boxoffice

Read-onlyIdempotent

Get the weekend box office results from Trakt's movie data. See which films topped the charts and view revenue details.

Instructions

Get the weekend box office.

GET /movies/boxoffice

Args: extended: Extended information to include in the response.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
extendedNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.8/5.0
Behavior3/5

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

Annotations declare readOnlyHint, idempotentHint, and openWorldHint, and the 'Get' wording is consistent with them. The description adds no behavioral detail beyond the weekend scope, but the safety profile is already covered by 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.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is short and front-loaded with the core action; the endpoint line and args line add minimal supporting context. It is not bloated, though the args line is somewhat redundant with the schema.

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 read-only tool with one optional parameter, an output schema, and strong annotations, this is nearly complete: an agent can correctly call it with no arguments. The only notable gap is the lack of guidance on the 'extended' parameter values, which keeps it from a 5.

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 carry the parameter explanation. Saying 'extended: Extended information to include in the response' mostly restates the parameter name and gives no concrete allowed values, leaving an agent unable to know what strings are valid.

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 opening line 'Get the weekend box office' pairs a specific verb with a clear resource, and the endpoint 'GET /movies/boxoffice' confirms it. This cleanly distinguishes the tool from siblings like list_movies_trending or list_movies_hot without requiring schema inspection.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description establishes a clear context: it is for weekend box-office data, so an agent can infer when to choose it over the many list_movies_* alternatives. It does not, however, provide explicit when-not-to-use guidance or name an alternative tool.

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