Skip to main content
Glama
rsp2k
by rsp2k

lb_create

Create a Vultr load balancer with configurable region, balancing algorithm, health checks, forwarding rules, SSL, and firewall settings. Specify required region and optional parameters to provision a new load balancer.

Instructions

Create a new load balancer.

Args: region: Region code (e.g., 'ewr', 'lax') ctx: FastMCP context for resource change notifications balancing_algorithm: Algorithm to use ('roundrobin' or 'leastconn') ssl_redirect: Redirect HTTP traffic to HTTPS http2: Enable HTTP/2 support http3: Enable HTTP/3 support proxy_protocol: Enable proxy protocol timeout: Connection timeout in seconds label: Label for the load balancer nodes: Number of backend nodes health_check: Health check configuration dict with keys: - protocol: 'http', 'https', 'tcp' - port: Port number - path: Path for HTTP checks - check_interval: Check interval in seconds - response_timeout: Response timeout in seconds - unhealthy_threshold: Failures before marking unhealthy - healthy_threshold: Successes before marking healthy forwarding_rules: List of forwarding rule dicts with keys: - frontend_protocol: 'http', 'https', 'tcp' - frontend_port: Frontend port number - backend_protocol: 'http', 'https', 'tcp' - backend_port: Backend port number ssl: SSL configuration dict with keys: - private_key: Private key content - certificate: Certificate content - chain: Certificate chain content firewall_rules: List of firewall rule dicts with keys: - port: Port number - source: Source IP or CIDR - ip_type: 'v4' or 'v6' auto_ssl: Auto SSL configuration dict with keys: - domain_zone: Domain zone - domain_sub: Subdomain global_regions: List of global region codes vpc: VPC ID to attach to private_network: Private network ID (legacy) sticky_session: Sticky session configuration with cookie_name

Returns: Created load balancer information

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sslNo
vpcNo
http2No
http3No
labelNo
nodesNo
regionYes
timeoutNo
auto_sslNo
health_checkNo
ssl_redirectNo
firewall_rulesNo
global_regionsNo
proxy_protocolNo
sticky_sessionNo
private_networkNo
forwarding_rulesNo
balancing_algorithmNoroundrobin

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.0.1

TDQS

A3.9/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden. It only says 'Create a new load balancer' without disclosing side effects, permissions, cost implications, or whether creation is asynchronous. It doesn't mention what happens on failure or partial creation. For a creation tool with zero annotation coverage, this is a significant gap.

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?

The description is lengthy but appropriately structured with an Args list and Returns line. It front-loads the core purpose and then documents each parameter. While some verbosity exists (e.g., repeating default values already in schema), it is organized and efficient for the 18-parameter complexity.

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?

Given the complexity and that an output schema exists (though not shown), the description adequately covers parameters and return type at a high level. It does not explain prerequisites, regional availability, or interactions with VPC/private networks beyond parameter descriptions. It is minimally complete for an agent to invoke correctly.

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

Parameters5/5

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

Schema description coverage is 0%, so the description is the only source of parameter semantics. It provides not only types and defaults but also allowed values for balancing_algorithm, detailed nested keys for health_check, forwarding_rules, ssl, firewall_rules, auto_ssl, and sticky_session. This adds substantial meaning beyond the schema's generic anyOf objects.

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 clearly states 'Create a new load balancer' with a specific verb and resource. It distinguishes from siblings like lb_create_forwarding_rule and lb_update by focusing on creation of the entire load balancer resource. No ambiguity.

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

Usage Guidelines4/5

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

The description implies usage for creating a load balancer, and siblings like lb_update, lb_get, lb_delete indicate the lifecycle. However, it does not explicitly state when to use this tool over alternatives (e.g., lb_configure_basic_web_lb). The context is clear enough for an agent to infer, but lacks explicit exclusion guidance.

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