Skip to main content
Glama
rollecode

Trakt MCP server

by rollecode

get_users_by_id_lists

Read-onlyIdempotent

Fetch a Trakt user's personal lists by ID, supporting pagination and extended details.

Instructions

Get a user's personal lists.

GET /users/{id}/lists

Args: id: The slug that identifies the user, or "me" for the authenticated user. extended: Extended information to include in the response. page: The page number to retrieve limit: The number of items per page. Defaults and maximums vary by endpoint. When pagination parameters are omitted, a low default limit is applied (often 10). When a limit is provided, it is capped at the endpoint maximum (often 250); higher values are clamped rather than rejected.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
pageNo
limitNo
extendedNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.6/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds genuinely useful behavioral context beyond the annotations: the special 'me' value for the authenticated user and the detailed pagination semantics (low default limit, clamping to endpoint maximum rather than rejecting).

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 definition is compact: a one-sentence purpose, the endpoint signature, and a tight args list. The key purpose and pagination nuances are presented cleanly without filler. It is appropriately sized for a 4-parameter read endpoint.

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 moderately complex paginated endpoint with an output schema present (so return values need no explanation), the description covers purpose, the 'me' identifier, and pagination behavior adequately. The main gap is lack of explicit differentiation from sibling list endpoints, but the inline endpoint path mitigates this.

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 description coverage is 0%, so the description must compensate — and it does, addressing all four parameters: id with the 'me' special value, page semantics, limit with default/clamping behavior, and extended as response enrichment. The parameter notes are terse but meaningful, especially the pagination details that the empty schema titles cannot convey.

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 states a clear verb and resource: "Get a user's personal lists." The qualifier 'personal' helps distinguish this from the sibling get_users_by_id_lists_collaborations, though no sibling is named explicitly. The inline REST endpoint GET /users/{id}/lists reinforces the resource and scope.

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 on when to choose this tool over alternatives like get_users_by_id_lists_collaborations or get_users_by_id_lists_by_list_id. The 'personal lists' phrasing implies scope but does not state exclusions or selection criteria. Pagination guidance is present but addresses parameter usage, not tool selection.

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