Skip to main content
Glama

Enable or disable DNSSEC

update_dnssec

Enable or disable DNSSEC for a specified domain through the ArvanCloud API to manage DNS security settings.

Instructions

[WRITE] Update DNSSEC. Offline FA (cdn/dns-records/dnssec): PUT /domains/{domain}/dns-records/dnssec/actions body {"enable":true|false}.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
domainYes
enableYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.5.3

TDQS

C2.9/5.0
Behavior2/5

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

Annotations already declare readOnlyHint=false, destructiveHint=false, and openWorldHint=true, covering the safety profile, and the [WRITE] tag merely repeats that. The description adds only an implementation endpoint (offline FA, PUT path) rather than behavioral context such as side effects of disabling DNSSEC or propagation/latency considerations.

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?

Compact and front-loaded with the [WRITE] Update DNSSEC lead, followed by endpoint detail. Slight redundancy between [WRITE] and the write annotations, but 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 simple 2-param mutation with no output schema, it covers purpose, HTTP method, and the body shape. It still omits when to use it versus get_dnssec and any behavioral consequences, leaving notable gaps for a write operation.

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 partly does, revealing that the request body carries {"enable":true|false} and that domain is a URL path segment, which clarifies both parameters beyond the bare schema types.

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+resource (Update DNSSEC) and the title clarifies the toggle nature (Enable or disable DNSSEC). It is distinguishable from the read sibling get_dnssec, though the description itself doesn't explicitly contrast them.

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?

No explicit when-to-use guidance. The [WRITE] tag implies a mutation and get_dnssec exists for reads, but the description never names the alternative or states the condition for choosing this tool over it.

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