Skip to main content
Glama
rollecode

Trakt MCP server

by rollecode

create_users_by_id_smart_lists

Idempotent

Create a smart list for a Trakt user by providing the user ID and list configuration. Use this to build personalized lists with custom rules.

Instructions

Create smart list.

POST /users/{id}/smart-lists

Args: id: Path parameter. body: Request payload. Read the matching GET or the /schema endpoint first to see the fields this resource expects.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
bodyYes

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 indicate it's a write tool (readOnlyHint: false), idempotent, and non-destructive. The description adds no behavioral context beyond that—no mention of side effects, auth requirements, or what happens if the list already exists. It does not contradict annotations, but it adds no transparency beyond them.

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—three lines including the endpoint and Args note. It's front-loaded with the core purpose. It doesn't waste words, but it omits useful details. It earns its keep, but a bit more context could fit without bloat.

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?

For a creation tool with an opaque body object and a user path ID, the description leaves critical gaps: it doesn't define what a smart list is, required body fields, or how the output looks (though output schema exists). It defers to external resources, which helps but isn't self-contained. Among many sibling create tools, it doesn't explain selection criteria.

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 compensate. It only states 'id: Path parameter' and 'body: Request payload'—repeating the schema names without meaning. It points to external schema/GET but doesn't explain what 'id' refers to (likely user ID) or what fields the body needs. Very limited semantic value.

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 clearly states the action ('Create smart list.') with a specific verb and resource. It doesn't tautologically repeat the name, but it doesn't distinguish smart lists from regular lists or other create tools such as create_users_by_id_lists, which weakens differentiation.

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 only guidance is 'Read the matching GET or the /schema endpoint first to see the fields this resource expects.' This instructs the agent to look up the schema but doesn't specify when to use this tool versus alternatives (e.g., regular list creation) or any prerequisites beyond reading the schema. No exclusions or alternative routing are given.

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