get_popular_stocks
주요 인기 종목의 코드 목록을 조회합니다. 종목 코드를 모를 때 참고하세요.
Returns:
주요 종목명과 6자리 코드 목록
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |
주요 인기 종목의 코드 목록을 조회합니다. 종목 코드를 모를 때 참고하세요.
Returns:
주요 종목명과 6자리 코드 목록
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
| Name | Required | Description | Default |
|---|---|---|---|
| result | Yes |
Changes observed during successful MCP inspections.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the behavioral disclosure burden. It states the operation is a read-only list retrieval and describes the return content as major stock names and 6-digit codes. However, it does not disclose details like ordering, how 'popular' is determined, or whether the list is static or real-time.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is short, front-loaded with the main purpose, includes a usage hint, and separates the return information clearly. Every sentence earns its place with no redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a zero-parameter read-only tool with an output schema, the description is complete. It states what the tool does, when to use it, and what it returns, leaving no critical gap for an agent to invoke it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The tool has zero parameters, so the baseline is 4. The description adds no parameter details, but none are needed since the input schema is empty.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb '조회합니다' (retrieves) and the resource '주요 인기 종목의 코드 목록' (list of major popular stock codes). It implies a distinction from search_stock by offering a curated list rather than a search, but it does not explicitly name or differentiate from the sibling tool.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives an explicit usage trigger: '종목 코드를 모를 때 참고하세요' (refer to this when you don't know the stock code). This is clear context for when to use the tool, though it does not mention when not to use it or compare it to alternatives like search_stock.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.