Skip to main content
Glama
rsp2k
by rsp2k

cdn_create_cdn_zone

Create a CDN zone by specifying an origin domain to deliver content through Vultr's edge network. Configure CORS, gzip compression, bot blocking, and regional availability for your content.

Instructions

Create a new CDN zone.

Args: origin_domain: Origin domain for the CDN origin_scheme: Origin scheme (http or https) cors_policy: CORS policy configuration gzip_compression: Enable gzip compression block_ai_bots: Block AI/crawler bots block_bad_bots: Block known bad bots block_ip_addresses: List of IP addresses to block regions: List of regions to enable CDN in

Returns: Created CDN zone details

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
regionsNo
cors_policyNo
block_ai_botsNo
origin_domainYes
origin_schemeNohttps
block_bad_botsNo
gzip_compressionNo
block_ip_addressesNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.0.1

TDQS

B3.2/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It only says 'Create a new CDN zone' and lists parameters. It does not mention side effects (e.g., whether existing zones are affected), idempotency, authentication/authorization requirements, rate limits, or any failure modes. This is a significant gap for a creation tool.

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 well-structured with an 'Args' section followed by 'Returns', and the action sentence is front-loaded. It is concise with no fluff. While it could be slightly shorter, it efficiently conveys the essential information without repetition.

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 description includes a 'Returns' section and the output schema exists, so return values are covered. However, it omits behavioral context such as prerequisites (e.g., the origin domain must be valid and accessible), any limitations on the number of zones, and potential error conditions. For an 8-parameter creation tool with no annotations, this is only partially complete.

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

Parameters3/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 compensate. It lists all 8 parameters with brief one-line meanings (e.g., 'origin_scheme: Origin scheme (http or https)'), which adds some semantic value. However, it lacks details on formats, allowed values beyond the scheme hint, relationships between parameters, or defaults. It does not fully compensate for the schema's lack of descriptions.

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 the verb 'Create' and the resource 'CDN zone', distinguishing it from siblings like cdn_update_cdn_zone, cdn_delete_cdn_zone, and cdn_list_cdn_zones. The parameter list enumerates the configurable properties, making the purpose unambiguous.

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?

The description gives no explicit guidance on when to use this tool versus alternatives. It does not state prerequisites (e.g., need an origin domain), conditions that favor it over other creation tools, or scenarios where it should not be used. The verb 'create' implies the obvious use case, but no context or exclusions are provided.

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