Skip to main content
Glama
rollecode

Trakt MCP server

by rollecode

create_users_settings_plex_sync

Idempotent

Trigger a Plex sync with Trakt to update your watch history and account settings.

Instructions

Sync Plex now.

POST /users/settings/plex/sync

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

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/5

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

Annotations already provide readOnlyHint=false, destructiveHint=false, and idempotentHint=true. The description adds no behavioral context beyond 'now' and the POST endpoint; it does not explain side effects, prerequisites, or what syncing entails. It does not contradict the annotations, but it also does not add meaningful disclosure 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 compact: an action, an endpoint, and an args note. It front-loads 'Sync Plex now' and avoids filler. It is slightly terse, but every sentence serves a purpose.

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 tool with a required open-world body parameter, no schema coverage, and no explicit differentiation from related Plex tools, the description is too thin. It tells the agent where to find the schema but not what the request needs, what the sync does, or what prerequisites exist. The output schema mitigates the need to describe return values, but the invocation context remains incomplete.

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 coverage is 0%, and the body parameter is an open additionalProperties object. The description identifies body as the request payload and points to the matching GET or /schema endpoint for field discovery, which is useful, but it does not actually describe the expected fields or their meaning. The agent must rely on external discovery to understand the parameter.

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 concrete action and resource: 'Sync Plex now,' backed by the endpoint POST /users/settings/plex/sync. This distinguishes it from siblings like create_users_settings_plex_connect or get_users_settings_plex, though it does not explicitly contrast them.

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

Usage Guidelines3/5

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

'Sync Plex now' implies the intended use case: trigger a Plex sync. However, there is no explicit guidance about when not to use it or how it relates to Plex connect/get/sync alternatives. The note to read the matching GET or /schema endpoint is request-construction guidance, not tool-selection guidance.

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