Skip to main content
Glama
Johnhyeon

StockLens

by Johnhyeon

get_news

Read-onlyIdempotent

Get recent news articles for a Korean stock using its 6-digit code. Filter results by number of articles or today's date only.

Instructions

종목뉴스 — 한국 주식 종목의 최근 기사 (네이버 종목 뉴스 + 종목명 뉴스 검색).

"무슨 뉴스 있어", "기사 찾아줘", "재료가 뭐야" 질문에 사용합니다. "오늘 왜 오르나"는 시세·공시·리포트까지 한 번에 묶는 get_move_context 가 맞습니다. 공시(get_disclosure)가 0건이어도 기사는 있을 수 있습니다 — 회사 보도자료는 공시가 아닙니다.

출처가 둘이라 시각 정확도가 다릅니다. 시각 앞의 표기("약")를 그대로 전하세요.

  • 종목태그: 네이버가 종목을 붙인 기사. 기사 시각 정확(분 단위). 당일 기사는 늦게 붙습니다.

  • 이름검색: 종목명 뉴스 검색. 당일 기사가 바로 잡힘. 시각은 "N시간 전" 표시를 조회 시각에서 뺀 근사값이고, 같은 이름의 다른 대상 기사가 섞일 수 있습니다.

Args: code: 종목코드 6자리 (예: "036090") limit: 기사 수 (기본 10, 최대 30) today_only: True 면 오늘(한국 날짜) 기사만

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
codeYes
limitNo
today_onlyNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.1.3

TDQS

A5/5.0
Behavior5/5

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

The description discloses data quality nuances beyond annotations: two sources with different timestamp accuracy, approximate times for name search, potential mixing of same-name articles, and late tagging for today's articles. It also notes that company press releases are not disclosures. This adds substantial behavioral context that annotations (readOnlyHint, openWorldHint) do not cover.

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 organized with clear sections: purpose, usage, source distinctions, and args. It uses bullets for the source details, making it scannable. Every sentence adds value—no filler. It is appropriately sized for the complexity of the tool.

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?

Given the tool's complexity (two sources, timing caveats, three parameters with no schema descriptions) and the presence of an output schema, the description is complete. It covers what the tool does, when to use it, parameter semantics, and behavioral quirks, leaving nothing an agent needs to call it correctly.

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

Parameters5/5

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

Schema coverage is 0%, so the description fully compensates. The Args section defines each parameter: code (6-digit example), limit (default 10, max 30), and today_only (Korean date filter). This is essential and clearly stated, giving the agent everything needed to fill the parameters correctly.

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 opens with a clear statement: '종목뉴스 — 한국 주식 종목의 최근 기사' (stock news — recent articles for Korean stock), and explicitly names the two sources (Naver stock news and name search). It also distinguishes itself from get_move_context and get_disclosure, making the purpose unambiguous and differentiated from siblings.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It provides explicit usage triggers ('무슨 뉴스 있어', '기사 찾아줘', '재료가 뭐야') and an explicit when-not-to-use ('오늘 왜 오르나' → get_move_context). It also clarifies that get_disclosure returning zero does not imply no articles, which is a valuable routing rule.

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