Skip to main content
Glama
rollecode

seerr-mcp

by rollecode

get_user_by_user_id_watch_data

Read-onlyIdempotent

Fetch watch data for a user by user ID, enabling access to viewing history and activity.

Instructions

Get watch data.

GET /api/v1/user/{userId}/watch_data

Args: user_id: Path parameter.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
user_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=true, idempotentHint=true, and destructiveHint=false. The description adds only the HTTP method and path, which reinforces but does not go beyond the annotations. It does not disclose any additional behavioral context such as authentication requirements, data scope, or response behavior.

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 short and front-loaded with the action, but it includes an endpoint line and an Args section that largely duplicate schema information. It is not bloated, but it is more under-specified than efficiently concise.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple, has an output schema, and annotations cover the read-only safety profile. However, the description never explains what 'watch data' actually represents or how it differs from related resources like watchlist. This leaves an agent with only a vague sense of the tool's purpose in the broader API.

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 restates that user_id is a path parameter, which is a structural detail, not semantic meaning. It does not explain what the user_id represents, any format constraints, or how it affects the returned data.

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-resource pair: 'Get watch data.' The endpoint path including user/{userId}/watch_data further specifies the resource. It does not explicitly distinguish from sibling get_media_by_media_id_watch_data, but the tool name and path make the target clear.

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?

No guidance is provided on when to use this tool versus alternatives like get_user_by_user_id_watchlist or get_media_by_media_id_watch_data. The only implied usage is that it retrieves watch data, but there are no conditions, exclusions, or mentions of alternatives.

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