Skip to main content
Glama
rsp2k
by rsp2k

reserved_ip_update

Update the label of a reserved IP address to manage and identify your cloud resources.

Instructions

Update a reserved IP's label.

Args: reserved_ip: The reserved IP address (e.g., "192.168.1.1" or "2001:db8::1") label: New label for the reserved IP ctx: FastMCP context for resource change notifications

Returns: Success message

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
labelYes
reserved_ipYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.0.1

TDQS

A3.7/5.0
Behavior3/5

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

With no annotations, the description carries the behavioral burden. It clearly states the mutation (update label) and the success return, and it mentions ctx is used for resource change notifications. However, it does not disclose side effects, whether the update can occur while the IP is attached, or if the operation is reversible, leaving some behavioral ambiguity.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is compact and front-loaded: the action is stated first, followed by focused Args and Returns sections with no filler. Each line adds information about invocation or outcome. The only minor noise is ctx, which is not in the input schema, but it is short and informative.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple two-parameter update tool this is mostly adequate, and output schema presence means return details need no explanation. However, there is no guidance on prerequisites, when to use versus the many other reserved_ip tools, or behavior when the label is unchanged or the IP is not found, so an agent has to infer some context.

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

Parameters4/5

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

Input schema coverage is 0%, and the description compensates well by explaining reserved_ip as the reserved IP address with both IPv4 and IPv6 examples, and label as the new label. It does not add constraints such as label format or length, but it gives enough meaning for correct invocation of both parameters.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description begins with a specific, unambiguous action: 'Update a reserved IP's label.' It names the resource (reserved IP) and the exact attribute being modified (label), clearly distinguishing it from sibling reserved_ip_create, reserved_ip_delete, reserved_ip_attach, and reserved_ip_detach operations. An agent can tell what this tool does without opening the schema.

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?

There is no guidance on when to prefer this tool over alternatives, when not to use it, or any prerequisites such as the reserved IP needing to exist. The context of 'when you need to change a label' is implied only by the name and first sentence, with no explicit routing to siblings or exclusions.

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

Deploy Server

Other Tools