Skip to main content
Glama
rollecode

Trakt MCP server

by rollecode

list_sync_last_activities

Read-onlyIdempotent

Retrieve timestamps of recent Trakt activities to identify changes since the last sync, enabling targeted account synchronization.

Instructions

Get last activity.

GET /sync/last_activities

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.2/5.0
Behavior2/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and non-destructiveHint, so the description's job is to add context. It does not add any behavioral details such as pagination, time range, or data scope—it repeats the endpoint and says nothing beyond 'get last activity'.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness3/5

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

The description is brief with no filler words, and the endpoint is front-loaded. However, it is so sparse that it reads as an under-specified stub rather than a well-structured, information-dense description. The length is appropriate for a no-param tool, but the content is not.

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?

Even though the tool has no parameters and an output schema exists, the description fails to clarify the meaning of 'last activity' in this API's context galleries. It does not mention who the activities belong to, what kind of activities are included, or how this endpoint differs from closely related sync endpoints, leaving the agent to infer or call the wrong tool.

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?

The tool has zero parameters, so the description carries no parameter-documentation burden. The input schema trivially covers 100% of parameters, and the baseline for 0 params is 4.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose2/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description says 'Get last activity', which identifies a verb and a resource but leaves the resource undefined—it does not explain whose activity, what kind of activity, or what 'last' means. The endpoint string is redundant with the tool name and does not clarify semantics. It cannot be distinguished from siblings like get_sync_history_by_type_by_id on the basis of the description.

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

Usage Guidelines1/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 the many other sync and activity-related endpoints. No alternatives are mentioned, and no context is given for when a user or agent should call this specific endpoint instead of list_sync_history or similar.

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