Skip to main content
Glama
2duckchun

naver-ads-mcp

by 2duckchun

연관 키워드 및 검색량 조회

get_related_keywords
Read-onlyIdempotent

Retrieve related keywords with monthly search volume, click counts, and competition data from Naver Search Ads to find new keyword ideas for advertising or research.

Instructions

키워드도구 API로 힌트 키워드의 연관 키워드와 월간 검색수·클릭수·경쟁정도를 조회합니다. 광고 등록 여부와 무관하게 조회할 수 있어 키워드 발굴에 씁니다. 힌트는 최대 5개입니다.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
customerIdNo조회할 광고계정 CUSTOMER_ID. 생략하면 NAVER_ADS_CUSTOMER_ID를 사용합니다.
showDetailNo월간 검색수·클릭수 등 상세 지표 포함 여부.
hintKeywordsYes연관 키워드를 뽑을 기준 키워드. 공백 없이 넣는 편이 결과가 좋습니다.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4/5.0
Behavior3/5

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

Annotations already declare readOnly/idempotent/non-destructive/openWorld, so safety is covered. The description adds useful context — the hint cap of 5 and that results are independent of ad registration — but says nothing about rate limits, quota, or response shape. Adequate but not rich beyond the 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?

Three compact sentences: purpose first, then usage condition, then the hint constraint. No filler, and the core capability is front-loaded.

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?

With no output schema, the description usefully names what is returned (related keywords and monthly search volume/clicks/competition). Combined with 100% schema coverage and full annotations, an agent has enough to call it correctly; only the response format/pagination is unspecified, which is minor.

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%, so the schema already documents customerId, showDetail, and hintKeywords. The description's '힌트는 최대 5개' merely restates the schema's maxItems=5, adding no new semantics. Baseline 3 applies when the schema does the heavy lifting.

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?

States a precise verb+resource: retrieves related keywords plus monthly search volume, clicks, and competition level for hint keywords, and names the underlying Keyword Tool API. This clearly distinguishes it from siblings like list_keywords (registered keywords) and get_stats, so an agent can select it without opening the schema.

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?

Gives a clear use context ('used for keyword discovery') and a qualifying condition ('can be queried regardless of ad registration status'), which tells the agent this is not limited to registered keywords. It stops short of explicitly contrasting with alternatives such as list_keywords or get_stats, so it lacks explicit when-not guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.