control_release
Release the exclusive control lease held by this client to free the viewer for other agents or users.
Instructions
Release this client's exclusive control lease.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Release the exclusive control lease held by this client to free the viewer for other agents or users.
Release this client's exclusive control lease.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections.
v0.1.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare destructiveHint=true, readOnlyHint=false, and openWorldHint=true, so the safety profile is covered by structured data. The description adds only that the released lease is this client's (scoped ownership); it says nothing about idempotency, error behavior when no lease is held, or side effects on other clients.
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?
A single front-loaded sentence with no filler; every word carries meaning and nothing is repeated from the title or annotations.
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 tool with annotations covering the mutation/destructive profile and no output schema, the description is nearly sufficient. Only minor gaps remain, such as what happens if the caller holds no lease.
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 takes zero parameters and the schema is trivially complete, so there is nothing for the description to disambiguate. 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?
Specific verb+resource: "Release ... exclusive control lease" clearly states what the tool does. It pairs naturally with the sibling control_acquire, giving an agent enough to distinguish the two without opening either schema, though it does not name the sibling explicitly.
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?
Usage is only implied: the phrase "this client's ... lease" suggests the caller must already hold a lease, and the sibling control_acquire implies the acquire/release pairing. There is no explicit when-to-use, when-not-to-use, or alternative named.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.