set_my_rating
Assign or replace your personal IMDb rating for any title by supplying its ID and rating value.
Instructions
Set or replace the authenticated user's IMDb rating.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| rating | Yes | ||
| title_id | Yes |
Assign or replace your personal IMDb rating for any title by supplying its ID and rating value.
Set or replace the authenticated user's IMDb rating.
| Name | Required | Description | Default |
|---|---|---|---|
| rating | Yes | ||
| title_id | Yes |
Changes observed during successful MCP inspections.
v0.4.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint=false, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds minimal extra behavioral context beyond scope ('authenticated user's') and the replace semantics, but does not disclose additional side effects, valid rating ranges, or authentication requirements.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, front-loaded sentence with no filler. Every word contributes to identifying the action and the resource.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple two-parameter tool with annotations covering idempotence and non-destructiveness, the description is nearly complete: it states the action, the scope, and the resource. It lacks explicit parameter details, but those are minimal enough that an agent can likely infer them from the schema.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, and the description does not explain either parameter. The names rating and title_id are somewhat self-evident, and 'IMDb rating' gives context, but the agent receives no guidance on allowed rating values, title_id format, or constraints beyond the schema's types.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Set or replace') and a clear resource ('the authenticated user's IMDb rating'). It also includes the scope 'authenticated user's', which distinguishes it from sibling tools like get_my_rating and delete_my_rating without ambiguity.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly implies when to use the tool: when the user wants to create or update their rating for a title. However, it does not explicitly mention alternatives or exclusions, such as when to use delete_my_rating instead, leaving some guidance implied rather than stated.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.