release
Free GPU VRAM by ending an active claim before its TTL expires, making room for new models.
Instructions
Release a claim early, before its TTL would expire.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| claim_id | Yes |
Free GPU VRAM by ending an active claim before its TTL expires, making room for new models.
Release a claim early, before its TTL would expire.
| Name | Required | Description | Default |
|---|---|---|---|
| claim_id | Yes |
Changes observed during successful MCP inspections.
v0.2.0Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are present, so the description carries the full burden of behavioral disclosure. It only states that this is an early mutation, with no details on side effects, failure states, or whether release frees resources.
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 entire description is one front-loaded sentence with no filler; every word contributes the core action and timing.
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 one-parameter tool, the action and target are present, so it is minimally viable. However, with no annotations and no output schema, the absence of behavioral or postcondition detail leaves gaps about what 'release' actually changes.
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 coverage is 0% and the description never mentions claim_id. The term 'claim' in the description loosely maps to the required claim_id, but no format, source, or usage detail is added beyond the schema's type and name.
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 ('Release') and resource ('claim'), and adds temporal scope ('early, before its TTL would expire'), so an agent can identify the action. It does not name sibling tools such as renew or unload, but the claim/TTL framing makes the operation distinct.
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?
It provides a clear usage condition: use this when releasing a claim before TTL expiry. It does not explicitly state exclusions or compare with siblings, but the 'early' qualifier gives enough context for selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.