Skip to main content
Glama

skypilot_serve_update

Update an existing SkyPilot service with a new task configuration using rolling or blue-green deployment; returns a request_id.

Instructions

Update an existing service with a new task configuration. Set mode to 'rolling' (default) or 'blue_green'. Returns a request_id.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
modeNorolling
task_yamlYes
service_nameYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

B3.2/5.0
Behavior3/5

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

Annotations already declare destructiveHint=false and openWorldHint=true. The description adds the mode semantics and notes a request_id is returned, but says nothing about deployment behavior, rollback, or whether a rolling update can fail mid-way. Modest value beyond the annotations.

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

Conciseness4/5

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

Three lean sentences with the core action front-loaded and no filler. Efficient, though the return-value note is slightly redundant given an output schema exists.

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?

The output schema covers the return value and annotations cover the safety profile, so those are not needed. However, for a mutation tool with 0% param coverage, the description omits the task_yaml format, the meaning of service_name, and any failure/reversibility context.

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

Parameters2/5

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

Schema description coverage is 0%, so the description must carry parameter meaning. It documents only 'mode' (rolling default / blue_green) and leaves both required parameters, task_yaml and service_name, entirely unexplained, including the format of the YAML config. It does not compensate for the coverage gap.

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

Purpose4/5

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

States a specific verb (Update) and resource (an existing service) plus the operative input (a new task configuration). It distinguishes itself conceptually from skypilot_serve_up (create) and skypilot_serve_down, though it never names a sibling to sharpen the boundary.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The mode options ('rolling' default vs 'blue_green') give some operational guidance, but there is no statement of when to pick this over skypilot_serve_up, serve_down, or terminate_replica, nor any prerequisites or exclusions. Usage is only implied.

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