Skip to main content
Glama
rollecode

Trakt MCP server

by rollecode

get_smart_lists_by_list_id

Read-onlyIdempotent

Retrieve a specific smart list by its ID to view its curated contents, details, and metadata.

Instructions

Get smart list.

GET /smart-lists/{list_id}

Args: list_id: Path parameter.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
list_idYes

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, idempotentHint, and destructiveHint=false. The description adds only the HTTP method and endpoint, providing no additional behavioral context such as authentication needs, rate limits, or the difference from user-scoped smart lists. 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.

Conciseness4/5

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

The description is highly compact and front-loaded with the action, endpoint, and argument. There is no filler or redundancy, though it sacrifices some useful detail for brevity.

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 tool is simple with one parameter and an output schema, but the description provides no context to distinguish it from similar siblings such as the user-specific smart list getter or the smart list items getter. An agent would have difficulty choosing this tool correctly without additional guidance.

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%, and the description only restates 'list_id: Path parameter', which just mirrors the schema's property name and location. It adds no value about format, constraints, or example values, so it fails to compensate for the missing schema descriptions.

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 uses a specific verb 'Get' and resource 'smart list', and the endpoint 'GET /smart-lists/{list_id}' clarifies the operation. It does not explicitly differentiate from the sibling tool 'get_users_by_id_smart_lists_by_list_id', but the purpose is unambiguous enough.

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 use this tool versus alternatives like 'get_users_by_id_smart_lists_by_list_id' or 'get_smart_lists_by_list_id_items'. No context is provided for selection or exclusions.

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