Skip to main content
Glama

set_movie_watch_status

Update the watch status of a movie in your MyShows profile by specifying its ID and choosing from watching, cancelled, later, or remove options.

Instructions

Sets the watch status of a movie by its ID. :param movie_id: The ID of the movie to set the watch status for. :param status: The watch status to set ( "watching" - watching the movie, "cancelled" - stop watching the movie, "later" - the movie to watch later, "remove" - have not watched the movie yet ) :return: A dictionary containing the result of the operation.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
movie_idYes
statusYes

Implementation Reference

  • MCP tool handler for set_movie_watch_status, decorated with @mcp.tool() for registration and @tool_handler. Delegates to api_client.
    @mcp.tool()
    @tool_handler
    async def set_movie_watch_status(movie_id: int, status: str):
        """Sets the watch status of a movie by its ID.
        :param movie_id: The ID of the movie to set the watch status for.
        :param status: The watch status to set (
            "watching" - watching the movie,
            "cancelled" - stop watching the movie,
            "later" - the movie to watch later,
            "remove" - have not watched the movie yet
        )
        :return: A dictionary containing the result of the operation.
        """
        return await api_client.set_movie_watch_status(movie_id=movie_id, status=status)
  • Core implementation in MyShowsAPI class that makes the API request to set movie watch status.
    async def set_movie_watch_status(self, movie_id: int, status: str):
        """Sets the watch status of a movie by its ID.
        :param movie_id: The ID of the movie to set the watch status for.
        :param status: The watch status to set ("watching", "cancelled", "later", "remove").
        :return: A dictionary containing the result of the operation.
        """
        return await self._make_request(
            "manage.SetShowStatus", params={"id": int(movie_id), "status": status}, id=5
        )
Behavior2/5

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

No annotations are provided, so the description carries the full burden of behavioral disclosure. It states the tool 'Sets' a status, implying a mutation operation, but doesn't describe side effects (e.g., if it updates a database, requires authentication, or has rate limits), error handling, or what the return dictionary contains, which is insufficient for a mutation tool.

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 appropriately sized and front-loaded with the core purpose in the first sentence. The parameter explanations are necessary but could be slightly more streamlined; overall, it avoids unnecessary verbosity and maintains a clear structure.

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?

Given the complexity of a mutation tool with no annotations and no output schema, the description is incomplete. It lacks details on behavioral traits (e.g., permissions, side effects), return value specifics, and usage context, making it inadequate for safe and effective tool invocation by an agent.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters5/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description adds significant meaning beyond the input schema, which has 0% description coverage. It explains the purpose of both parameters: 'movie_id' identifies the movie, and 'status' includes detailed enum-like values with explanations ('watching', 'cancelled', etc.), fully compensating for the schema's lack of documentation.

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 verb ('Sets') and resource ('watch status of a movie by its ID'), making the purpose specific and understandable. However, it doesn't explicitly differentiate from sibling tools like 'watched_movies' or 'uncheck_episode', which might have overlapping functionality for tracking viewing status.

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 description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., needing a valid movie ID), exclusions, or how it relates to sibling tools like 'watched_movies', leaving the agent to infer usage context.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/zeloras/myshows_mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server