Skip to main content
Glama

Update origin / load-balancer connection settings

update_origin_connection_settings

Update origin connection settings for a domain's load balancer, including protocol, keepalive, and failover parameters.

Instructions

[WRITE] Offline FA (https-settings + advanced-settings): PATCH /domains/{domain}/load-balancers/settings. Documented fields include protocol (http|https|auto), method, keepalive, max_fails, fail_timeout, next_upstream_tcp.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
domainYes
methodNo
protocolNo
keepaliveNo
max_failsNo
fail_timeoutNo
next_upstream_tcpNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.5.3

TDQS

C2.8/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=false, destructiveHint=false, and openWorldHint=true, so the safety profile is covered; the '[WRITE]' tag merely restates it. The description adds the concrete endpoint, but omits behaviorally important traits such as PATCH merge semantics (what happens to fields not sent), permission requirements, and whether the change takes effect immediately.

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

Conciseness3/5

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

It is a single compact sentence with the '[WRITE]' marker and endpoint front-loaded, which is good. That said, the parenthetical 'Offline FA (https-settings + advanced-settings)' adds internal jargon without clarifying anything, and the field list is largely redundant with the schema.

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

Completeness2/5

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

This is a 7-parameter mutation tool with 0% schema description coverage and no output schema, yet the description explains no parameter semantics and no mutation behavior. An agent could identify the target endpoint but not safely construct a correct payload from the description alone.

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% for 7 parameters, so the description must carry the semantic load, but it only re-lists property names (method, keepalive, max_fails, fail_timeout, next_upstream_tcp) and the protocol enum values that already appear in the schema. It never explains units, formats, defaults, or acceptable values for the string-typed fields.

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?

The description names a specific resource (origin/load-balancer connection settings for a domain), the underlying operation (PATCH .../load-balancers/settings), and the fields it touches. The '[WRITE]' tag and endpoint make the intent unambiguous. However, opaque jargon like 'Offline FA (https-settings + advanced-settings)' does little to sharpen the purpose, and the verb is only implied by 'PATCH'.

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 explicit when-to-use guidance, prerequisites, or alternatives. The description never tells the agent what condition should trigger this call versus, say, update_caching_settings or update_ssl_settings, nor does it note that the domain must already exist.

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