cast_status
Returns the current cast status, including playback state and device information, to monitor ongoing casting sessions.
Instructions
Retourne le statut du cast en cours
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Returns the current cast status, including playback state and device information, to monitor ongoing casting sessions.
Retourne le statut du cast en cours
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections.
v0.2.1Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds only the 'en cours' scoping but no additional behavioral detail such as what happens when no cast is active or whether the status can be empty.
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 short sentence with no filler or redundant wording. It is appropriately concise and the key information is front-loaded.
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 zero-parameter, read-only, idempotent tool, the inputs and side effects are adequately covered by the schema and annotations. However, there is no output schema and the description does not hint at possible status values or distinguish itself from cast_info, leaving some selection ambiguity.
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?
The tool has zero parameters and the schema fully documents this with an empty properties object and 100% coverage. The description has no parameter burden to carry, so the baseline 4 applies.
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 'Retourne' and identifies the resource as 'le statut du cast en cours', making it clear this is a read-only status check. However, it does not differentiate from the sibling cast_info, so it stops short of a 5.
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?
No guidance is provided on when to use cast_status versus cast_info or the other cast_* siblings, and there are no exclusions or prerequisites. The agent must infer usage entirely from the tool name and minimal description.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.