Skip to main content
Glama
sjk4425

ncloud-mcp-server

by sjk4425

ncloud_sens_create_project

Create a new SENS project for SMS or Kakao Biz messages on Naver Cloud, specifying a project name and optional service settings.

Instructions

Create a SENS project (POST /common/v2/projects). projectName: lowercase letters, digits, '-' and '_', ≤24 chars. Returns the created channel service IDs (NRN).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dryRunNoIf true, returns a preview without creating
useSmsNoEnable the SMS service (default false)
projectDescNoDescription (0-128 chars)
projectNameYesProject name (lowercase letters, digits, '-', '_'; ≤24 chars)
useKkoBizMsgNoEnable the Biz Message (Kakao) service (default false)

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.16.0

TDQS

A3.9/5.0
Behavior3/5

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

The annotation destructiveHint: false indicates it is not destructive, and the description adds the return value and projectName constraints. However, it does not disclose other potential side effects like cost implications or dependent resources. The description is consistent with annotations, but adds limited behavioral context beyond the obvious create action.

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 two short sentences with no wasted words. The main action is front-loaded, and the naming constraint is included efficiently. It is well-structured and easy to parse.

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 create operation with full schema coverage and a stated return value, the description is complete. The agent knows the required parameter (projectName) and the optional ones from the schema, and the response includes channel service IDs. No additional context is needed.

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 description coverage is 100%, and all parameters have descriptions. The tool description repeats the projectName pattern already in the schema, adding no new meaning to parameters. It only mentions the return, not parameter semantics.

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 (create a SENS project) and the resource, includes the endpoint, and specifies the return value (channel service IDs). The verb 'create' distinguishes it from sibling tools like list, get, update, and delete.

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 description implies usage for creating a new project but does not explicitly mention when to use this tool versus alternatives such as update or delete. It could be improved by stating that this is for creating a new project, while modifications use ncloud_sens_update_project.

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