Skip to main content
Glama
sjk4425

ncloud-mcp-server

by sjk4425

ncloud_sens_cancel_sms_reservation

DestructiveIdempotent

Cancel a scheduled SMS reservation before it is sent by providing the reservation ID. Set confirm=true to execute, preventing the pending message from being delivered.

Instructions

⚠️ Destructive: Cancel a scheduled SMS request before it is sent (DELETE /sms/v2/services/{serviceId}/reservations/{reserveId} → 204). Set confirm=true to execute.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
confirmNoMust be true to actually execute the destructive operation
reserveIdYesReservation ID (requestId of the scheduled send)
serviceIdNoSMS service ID in NRN form (e.g. ncp:sms:kr:1********2:myproject). Defaults to NCLOUD_SENS_SMS_SERVICE_ID / NCLOUD_SENS_SERVICE_ID. Find it with ncloud_sens_list_projects (smsService.serviceId). A 'Forbidden' reply means the project does not have this channel enabled.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.16.0

TDQS

A4.5/5.0
Behavior5/5

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

Beyond the annotations (destructiveHint: true, idempotentHint: true), the description adds the critical confirm=true requirement to execute, and discloses the 204 success response. This is exactly the behavioral context an agent needs and is not present in 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 sentence with the destructive warning front-loaded, then the action, endpoint, and execution requirement. No wasted words; every element earns its place.

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 destructive cancel operation, the description covers the action, the confirm gate, and the response code. No output schema exists, but the 204 is mentioned. The agent has everything needed to invoke correctly.

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% and each parameter already has a descriptive comment. The description adds minimal extra parameter insight beyond reiterating the confirm requirement. Baseline 3 is appropriate since the schema carries the semantic weight.

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 clear verb ('Cancel') and specific resource ('scheduled SMS request') with the HTTP endpoint. It clearly distinguishes from the sibling ncloud_sens_cancel_alimtalk_reservation by specifying SMS. The 'before it is sent' qualifier adds precision.

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: cancel a scheduled SMS that hasn't been sent. It doesn't explicitly name alternatives or exclusions, but the tool name and 'before it is sent' make the context clear. No explicit 'when not to use' guidance, but sufficient for a single-purpose cancel action.

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