Skip to main content
Glama
sjk4425

ncloud-mcp-server

by sjk4425

ncloud_sens_list_mails

Read-only

Retrieve individual mails from a SENS mail send request using its request ID. Filter by status, recipient, or subject to inspect delivery results and identify failures.

Instructions

List the individual mails of a SENS mail send request (GET /mail/v2/services/{serviceId}/requests/{requestId}/mails). Mails whose only recipients were unsubscribed/blocked are counted as FAILED.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sortNoSort as '{field},{direction}' (default 'createDateTime,desc')
titleNoSubject (partial match)
mailIdNoExact mail ID
pageNoNoPage number (0-based, default 0)
statusNoMail statuses to include (repeatable)
pageSizeNoItems per page (1-1000, default 10)
requestIdYesRequest ID
serviceIdNoMail service ID in NRN form (e.g. ncp:mail:kr:1********2:main). Defaults to NCLOUD_SENS_MAIL_SERVICE_ID / NCLOUD_SENS_SERVICE_ID. Find it with ncloud_sens_list_projects (mailService.serviceId). A 'Forbidden' reply means that project's Mail channel is not enabled (useMail=false) — pick a project with useMail=true.
recipientAddressNoExact recipient address

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?

Annotations already declare readOnlyHint: true, so the description doesn't need to restate that. It adds a valuable behavioral note that mails with only unsubscribed/blocked recipients are counted as FAILED, which is not obvious from the schema and helps the agent interpret results.

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?

Two sentences with no wasted words. The primary purpose is stated first, followed by a single caveat. Everything earns its place.

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 list operation with a fully-described schema, the description is adequate. It includes the crucial edge case about FAILED status. While it doesn't specify the output structure, no output schema exists and the tool's purpose is clear. Slight gap in not mentioning pagination defaults, but those are covered by parameter descriptions.

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?

The schema has 100% description coverage for all 9 parameters, so the baseline is 3. The description does not add any additional parameter semantics beyond what the schema already provides. It relies on the schema's thorough descriptions.

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 clearly states the action (List), the resource (individual mails of a SENS mail send request), and gives the API path. It distinguishes from sibling tools like list_mail_requests (which lists requests) and get_mail (which fetches a single mail) by specifying the granularity.

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 when to use this tool: when you need the individual mails for a given send request, identified by requestId. It does not explicitly compare with alternatives, but the context is clear from the verb 'List' and the resource. It doesn't mention exclusions, but for a list operation it's straightforward.

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