Skip to main content
Glama
sjk4425

ncloud-mcp-server

by sjk4425

ncloud_sens_get_alimtalk_reservation_status

Read-only

Check the status of a scheduled AlimTalk message reservation, returning whether it is ready, processing, canceled, failed, done, stale, or skipped.

Instructions

Get the status of a scheduled Alim Talk request (GET /alimtalk/v2/services/{serviceId}/reservations/{reserveId}/reserve-status): READY|PROCESSING|CANCELED|FAIL|DONE|STALE|SKIP.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
reserveIdYesReservation ID = requestId of the scheduled send
serviceIdNoALIMTALK service ID in NRN form (e.g. ncp:kkobizmsg:kr:1********2:myproject). Defaults to NCLOUD_SENS_ALIMTALK_SERVICE_ID / NCLOUD_SENS_SERVICE_ID. Find it with ncloud_sens_list_projects (kkoBizMsgService.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.2/5.0
Behavior4/5

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

The readOnlyHint annotation already signals a safe read operation, and the description adds the GET endpoint and the full set of possible statuses, which is useful since there is no output schema. It does not explain the semantics of statuses like STALE or SKIP, but it goes beyond what the annotation provides.

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?

The description is a single dense sentence that front-loads the action and resource, then adds the endpoint and status vocabulary. There is no filler or redundant restatement.

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

Completeness4/5

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

For a read-only status tool, the description plus the schema is sufficient: the required reserveId, optional serviceId discovery, and status values are all covered. It could be more complete by explaining status transitions or polling behavior, but nothing essential is missing for invoking it 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 both parameters have detailed schema descriptions, including the reserveId-to-requestId mapping and serviceId NRN/default/lookup guidance. The description itself adds no additional parameter detail, so it meets the baseline without exceeding it.

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 names a specific operation—getting the status of a scheduled AlimTalk reservation—and includes the exact endpoint and possible status values. This clearly distinguishes it from sibling tools like ncloud_sens_get_alimtalk_status and ncloud_sens_cancel_alimtalk_reservation.

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 clearly establishes the use case: checking the status of a scheduled AlimTalk request, which is distinct from listing, sending, or canceling reservations. It does not explicitly name alternatives or provide when-not-to-use exclusions, but the intended context is clear.

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