Skip to main content
Glama
sjk4425

ncloud-mcp-server

by sjk4425

ncloud_ncs_delete_bucket_encryption

DestructiveIdempotent

Delete the default server-side encryption configuration from a Ncloud Storage bucket. Existing objects remain unchanged, but new objects will no longer be encrypted by default. Confirmation required to execute.

Instructions

[Ncloud Storage] ⚠️ Destructive: Delete the default server-side encryption configuration of a Ncloud Storage bucket (DELETE /?encryption). New objects will no longer be encrypted by default; existing objects are unchanged. Set confirm=true to execute.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
confirmNoMust be true to actually execute the destructive operation
bucketNameYesName of the bucket to delete encryption configuration from

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.15.0

TDQS

A4.1/5.0
Behavior4/5

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

Annotations already declare destructiveHint=true and idempotentHint=true. The description adds genuinely useful context beyond those: the confirm=true execution gate, the scope distinction between new and existing objects, and the REST call being made. There is no contradiction with the annotations.

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

Conciseness5/5

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

A single front-loaded sentence that leads with the destructive warning, then covers action, resource, endpoint, effect on new objects, effect on existing objects, and the confirmation requirement. Every clause earns its place; there is zero filler.

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

Completeness5/5

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

For a simple two-parameter destructive config-delete, the description plus annotations and full schema coverage leave nothing material uncovered: safety profile, effect scope, and confirmation mechanism are all disclosed. No output schema exists, and DELETE operations have minimal response semantics, so omitting return-value details is acceptable.

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 100%, so the schema fully documents both parameters, including the confirm flag's purpose ('Must be true to actually execute the destructive operation'). The description's 'Set confirm=true to execute' reinforces but does not add new meaning beyond the schema. Baseline 3 applies.

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 states a specific verb (Delete) with a precise resource (default server-side encryption configuration of a Ncloud Storage bucket) and even the underlying REST endpoint (DELETE /?encryption). It is unambiguously distinguishable from its closest siblings ncloud_ncs_get_bucket_encryption and ncloud_ncs_put_bucket_encryption on the verb alone.

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 effect clause ('New objects will no longer be encrypted by default; existing objects are unchanged') implies the use case of disabling default encryption, but it does not explicitly name the alternative get/put_bucket_encryption tools or state when not to use this one. Usage context is implied rather than explicitly routed.

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