Skip to main content
Glama
sjk4425

ncloud-mcp-server

by sjk4425

ncloud_sens_upload_sms_attachment

Upload a JPG/JPEG image for MMS and get a file ID to attach to SMS messages. Accepts Base64 images up to 300 KB; identical files are reused.

Instructions

Upload a JPG/JPEG image for MMS (POST /sms/v2/services/{serviceId}/files; JSON with Base64 body, not multipart). ≤300 KB, ≤1500x1440, kept 6 days. Returns fileId for ncloud_sens_send_sms files[]. A file with the same name and size is reused.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
fileBodyYesBase64-encoded image (a 'data:image/...;base64,' prefix is stripped automatically)
fileNameYesFile name ending in .jpg/.jpeg (≤40 chars)
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.3/5.0
Behavior4/5

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

Beyond the annotations (only destructiveHint=false), the description discloses several behavioral traits: constraints (≤300 KB, ≤1500x1440, 6-day retention), JSON-with-Base64 not multipart, reuse of same name/size files, and the Forbidden error meaning the service lacks the channel. The only minor gap is not stating the file ID persistence/cleanup explicitly, but 6-day retention is stated.

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?

The description is a compact 4-sentence block with all key info: endpoint, format, size limits, retention, return value, and reuse behavior. Every sentence carries operational meaning. Slight structural improvement would be separating the 'what it does' from constraints, but it's efficient.

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?

Given there is no output schema, the description correctly identifies the returned fileId and how it's used. It also provides capacity/size constraints and error semantics. Missing details are minor, such as whether the fileId is returned in the body or as a header, but the description covers the key operational needs for an agent to call this tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so all three parameters are already documented in the schema. The description adds meaning by stating the fileBody is a Base64-encoded image with optional prefix stripping (already in schema) and that fileId is the return value. It also enriches serviceId semantics by pointing to ncloud_sens_list_projects and the channel-enabled requirement, which goes beyond the schema's NRN-form explanation.

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 tool uploads a JPG/JPEG image for MMS, names the exact endpoint, and specifies the return value (fileId for ncloud_sens_send_sms files[]). The verb 'upload' plus the resource and purpose distinguish it from the very large sibling list, including other SENS tools.

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 explicitly ties the output to ncloud_sens_send_sms files[], which implies the main usage flow: upload attachment then reference fileId in send SMS. It also explains the reuse behavior for same name/size. However, it doesn't explicitly contrast with alternative attachment-upload or image tools in the SENS family (e.g., ncloud_sens_list_brandmessage_images), so the when/alternative guidance is present but not fully explicit.

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