Skip to main content
Glama

Toggle DNS record cloud (CDN proxy)

set_dns_record_cloud

Toggle a DNS record's cloud/proxy status to route traffic through ArvanCloud CDN or keep it DNS-only. Specify the domain, record ID, and desired state.

Instructions

[WRITE] Toggle cloud/proxy status for a DNS record. Official: PUT /cdn/4.0/domains/{domain}/dns-records/{id}/cloud

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cloudYestrue = traffic via ArvanCloud CDN; false = DNS only
domainYes
record_idYesExact DNS record id returned by list_dns_records / get_dns_record

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.5.3

TDQS

B3.4/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 description adds the [WRITE] convention tag and the official API endpoint, but says nothing about idempotency, error/edge behavior, or side effects beyond what annotations provide.

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?

Two short sentences, front-loaded with the [WRITE] marker and the core action, with the endpoint appended compactly. No wasted prose.

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 small 3-parameter mutation with no output schema, the description covers purpose and endpoint adequately. It omits how the operation relates to update_dns_record and what happens to the record's other attributes, leaving some gaps for a write tool.

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 coverage is 67%; cloud and record_id are documented in the schema, and the boolean semantics of cloud are already explained there. The description adds no parameter meaning beyond the schema, so the baseline of 3 applies.

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 (toggle) and resource (cloud/proxy status of a DNS record), which is clear and distinct from generic record CRUD. It does not, however, explicitly distinguish itself from update_dns_record, which could plausibly also change the cloud flag.

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 description implies usage (toggle CDN proxy on/off) but gives no explicit when-to-use versus alternatives such as update_dns_record. No prerequisites or conditions are stated, leaving routing to inference.

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