Korean Stock Market Data
Server Details
Korean stock market data - prices, dividends, short selling, financial disclosures
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
- Repository
- SongT-50/korean-stock-mcp
- GitHub Stars
- 0
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.4/5 across 7 of 7 tools scored.
Each tool has a clear purpose: price snapshot, trend, comparison, dividends, indices, search, and popular stocks. Minor overlap exists between get_stock_price and get_price_trend, but descriptions clarify the single-day vs multi-day distinction.
All tools follow a consistent verb_noun snake_case pattern (compare_stocks, get_dividend_info, get_market_index, etc.), making the set predictable and easy to navigate.
With 7 tools, the server is well-scoped for retrieving Korean stock market data. Each tool covers a distinct aspect without unnecessary bloat or missing essentials.
The set covers the core data needs: current prices, historical trends, multi-stock comparison, dividends, market indices, and stock search. No critical gaps for a market data query server.
Available Tools
7 toolscompare_stocksAInspect
여러 종목의 시세를 비교합니다.
Args:
stock_names: 비교할 종목명 (쉼표 구분, 예: "삼성전자,SK하이닉스,NAVER")
date: 조회일 (YYYY-MM-DD). 빈 문자열이면 최근 영업일.
Returns:
종목별 시세 비교 (종가, 등락률, 거래량, 시가총액)
| Name | Required | Description | Default |
|---|---|---|---|
| date | No | ||
| stock_names | Yes |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the behavioral burden. It usefully discloses the date handling behavior (empty string means most recent business day) and the return contents (closing price, change rate, volume, market cap). However, it does not mention read-only nature, rate limits, or any limitations beyond the given scope.
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 a well-structured docstring: a one-line summary followed by Args and Returns sections. It is concise, front-loaded, and contains no filler—every sentence contributes useful information.
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?
Given the tool's moderate complexity, absence of annotations, and minimal schema, the description is complete. It covers purpose, both parameters with formats and defaults, and the return structure. The output schema exists, so further details about return fields are unnecessary.
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?
Schema description coverage is 0%, but the description fully compensates by explaining both parameters in detail. It specifies stock_names as comma-separated with a concrete example, and date as YYYY-MM-DD with the special empty-string meaning, adding significant value beyond the bare schema.
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 it compares stock quotes across multiple stocks ('여러 종목의 시세를 비교합니다'), which is a specific verb + resource. This distinguishes it from siblings like get_stock_price or search_stock by explicitly emphasizing multi-stock comparison.
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 implies usage for comparing multiple stocks but does not explicitly state when to use this tool versus alternatives or when not to use it. It lacks explicit exclusions or references to sibling tools like get_stock_price for single-stock queries.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_dividend_infoAInspect
주식 배당 정보를 조회합니다.
Args:
company_name: 회사명 (예: "삼성전자", "SK하이닉스")
year: 결산년도 (예: "2025"). 빈 문자열이면 최근.
num_results: 조회 건수 (기본 20, 최대 100)
Returns:
배당률, 배당금, 배당기준일, 배당지급일
| Name | Required | Description | Default |
|---|---|---|---|
| year | No | ||
| num_results | No | ||
| company_name | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations exist, so the description carries full responsibility. It discloses the return fields (배당률, 배당금, 배당기준일, 배당지급일) and parameter behavior, such as empty year meaning 'most recent'. However, it does not explicitly state that this is a read-only operation or mention error conditions, but '조회' implies retrieval.
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 well-structured with clear Args and Returns sections. Every line adds value, providing examples and defaults without unnecessary filler. It is appropriately sized for the tool's complexity.
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?
With three parameters, no annotations, and an output schema that is not shown but described in Returns, the description covers all necessary aspects: inputs, defaults, and output fields. No major gaps exist for an agent to invoke this tool 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?
Schema description coverage is 0%, but the description provides detailed, actionable semantics for each parameter: company_name with examples, year with 'empty string means recent', and num_results with default and max values. This fully compensates for the lack of schema descriptions.
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 '주식 배당 정보를 조회합니다' (retrieves stock dividend information), using a specific verb and resource. This distinguishes it from sibling tools like get_stock_price, get_market_index, and search_stock.
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 implies when to use the tool by focusing on dividend data with parameters for company name and fiscal year. It does not explicitly mention alternatives or exclusions, but the context is clear enough for correct selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_market_indexAInspect
KOSPI, KOSDAQ 등 주요 시장 지수를 조회합니다.
Args:
index_name: 지수명 (예: "코스피", "코스닥"). 빈 문자열이면 주요 지수 전체.
date: 조회일 (YYYY-MM-DD). 빈 문자열이면 최근 영업일.
num_results: 조회 건수 (기본 20, 최대 100)
Returns:
지수 종가, 등락률, 거래량, 거래대금, 상장시가총액
| Name | Required | Description | Default |
|---|---|---|---|
| date | No | ||
| index_name | No | ||
| num_results | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses parameter behavior (empty strings fall back to all indices or recent business day, num_results default 20 and max 100) and lists return fields. Missing details include error handling, data freshness, or explicit read-only confirmation, but for a simple retrieval tool it provides substantial behavioral context.
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 compact and well-structured, with a one-line purpose statement followed by organized Args and Returns sections. Every sentence delivers necessary information without 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 straightforward retrieval tool with an output schema, the description covers all invocation essentials: every parameter's meaning and defaults, result count limits, and return fields. It is complete for an agent to select and correctly invoke the tool.
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 schema has zero description coverage, but the description fully compensates by explaining each parameter: index_name with examples and all-indices behavior, date format and default, and num_results default/max. This goes well beyond the bare schema definitions.
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 'KOSPI, KOSDAQ 등 주요 시장 지수를 조회합니다' (retrieves major market indices such as KOSPI, KOSDAQ), specifying the verb 'retrieve' and the resource 'market indices'. This distinguishes it from sibling tools that handle individual stocks, dividends, and price trends.
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 implies usage for market index data but does not explicitly mention when to use this tool versus alternatives or provide exclusion criteria. Sibling tools are stock-focused, making the context clear, but there is no direct comparative guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_popular_stocksAInspect
주요 인기 종목의 코드 목록을 조회합니다. 종목 코드를 모를 때 참고하세요.
Returns:
주요 종목명과 6자리 코드 목록
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden. It discloses the return format (list of major stock names and 6-digit codes) but does not elaborate on any other behavioral traits such as pagination or sorting. For a simple read-only operation, this is adequate, but not rich.
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 two concise lines, immediately stating purpose and return format without any fluff.
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?
Given the tool's simplicity (no parameters, output schema present), the description fully covers purpose, usage context, and return value. It is complete for the tool's complexity.
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 takes no parameters, so the description has no parameter burden. The lack of parameters is fully clear from the schema.
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 function (retrieving a list of codes for major popular stocks) and includes a usage hint about when to reference it. This distinguishes it from siblings like search_stock, which searches for specific stocks.
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 explicitly advises using this tool when you do not know the stock code, providing a clear usage context. It does not explicitly exclude other tools, but the guidance is sufficient for a simple list tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_price_trendAInspect
종목의 최근 N일간 주가 추이를 조회합니다.
Args:
stock_name: 종목명 (예: "삼성전자", "NAVER")
stock_code: 종목 단축코드 6자리 (예: "005930"). stock_name과 둘 중 하나.
days: 조회 기간 (기본 7일, 최대 30일)
Returns:
일별 종가, 등락률, 거래량 추이 및 기간 수익률
| Name | Required | Description | Default |
|---|---|---|---|
| days | No | ||
| stock_code | No | ||
| stock_name | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses key behavior: returns daily close, change rate, volume, period return; days limited to max 30; stock_name and stock_code are alternatives. However, it does not clarify behavior if both or neither are provided, or error handling. Since no annotations exist, the description carries this burden adequately but not exhaustively.
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?
Structured with a one-line purpose, then Args and Returns sections; every sentence adds information and avoids fluff.
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?
The description covers all parameters, return fields, and constraints (days default/max, input alternatives). It lacks explicit sibling differentiation and edge-case behavior, so it's slightly incomplete but sufficient for effective use.
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?
Schema has no descriptions (0% coverage); the description compensates fully: explains stock_name with examples, stock_code as 6-digit code, days with default and max, and specifies that either stock_name or stock_code is needed.
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 opens with '종목의 최근 N일간 주가 추이를 조회합니다' (queries the recent N-day stock price trend), which clearly states a specific verb and resource. The name and description align, and the trend focus separates it from single-price tools like get_stock_price.
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?
No guidance on when to use this tool versus alternatives; it does not mention comparison tools or single-price tools. The description only provides parameter details, not usage context or exclusions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_stock_priceAInspect
한국 주식 시세를 조회합니다. 종목명 또는 종목코드로 검색할 수 있습니다. 데이터는 전일 종가 기준입니다 (당일 실시간 아님).
Args:
stock_name: 종목명 (예: "삼성전자", "NAVER", "카카오")
stock_code: 종목 단축코드 6자리 (예: "005930"). stock_name과 둘 중 하나만 입력.
date: 조회일 (YYYY-MM-DD). 빈 문자열이면 최근 영업일.
market: 시장 구분 ("KOSPI", "KOSDAQ", "KONEX"). 빈 문자열이면 전체.
num_results: 조회 건수 (기본 20, 최대 100)
Returns:
종가, 시가, 고가, 저가, 거래량, 등락률, 시가총액 등
| Name | Required | Description | Default |
|---|---|---|---|
| date | No | ||
| market | No | ||
| stock_code | No | ||
| stock_name | No | ||
| num_results | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It discloses that data is based on previous day's close, that only one of stock_name/stock_code should be entered, and lists return fields. This is solid, though it lacks details like error handling or rate limits.
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 well-organized into a summary, Args list, and Returns list. Each sentence earns its place, providing essential details without extraneous content.
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 tool with 5 optional parameters and an output schema, the description covers all invocation aspects: search keys, date, market filter, result count, and return fields. It is complete for the tool's purpose, and the explicit output schema further covers return structure.
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 schema has 0% description coverage, so the description's detailed Args section compensates fully. It gives examples for stock names, explains the 6-digit code format, clarifies that only one of name/code should be used, and specifies defaults and constraints for date, market, and num_results.
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 that it retrieves Korean stock prices ('한국 주식 시세를 조회합니다') and can search by name or code. This specific verb-resource pair distinguishes it from sibling tools like get_price_trend (trends) and get_market_index (index).
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 provides clear guidance on how to use the tool (search by name/code, optional date and market) and notes that data is previous-day close, not real-time. However, it does not explicitly mention alternatives or when not to use this tool, so it falls short of a 5.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_stockAInspect
종목명 키워드로 KRX 상장종목을 검색합니다.
Args:
keyword: 검색 키워드 (예: "삼성", "바이오", "에너지")
market: 시장 구분 ("KOSPI", "KOSDAQ", "KONEX"). 빈 문자열이면 전체.
num_results: 조회 건수 (기본 20, 최대 100)
Returns:
종목코드, 종목명, 시장구분, 법인명, 법인등록번호
| Name | Required | Description | Default |
|---|---|---|---|
| market | No | ||
| keyword | Yes | ||
| num_results | No |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Since no annotations are provided, the description carries the full burden of behavioral disclosure. It transparently describes the search operation, parameter semantics (e.g., empty market means all, num_results default and max), and return fields. It does not mention potential edge cases like case sensitivity or error handling, but it is clear about the core behavior and scope, which is sufficient for a read-only search tool.
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 well-structured with an overview, args, and returns sections. Each sentence is informative and contributes value—no fluff or redundancy. The bullet-like layout enhances readability and makes the essentials easy to scan.
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 simple search tool, the description covers all three parameters with defaults and constraints, lists return fields, and notes behavior like empty market meaning all. Since an output schema exists, return value details are already structured, and the description still provides a human-readable summary. It is complete enough for an agent to invoke the tool 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?
Schema description coverage is 0%, but the description fully compensates by providing detailed parameter explanations: 'keyword' with examples ('삼성', '바이오'), 'market' with allowed values (KOSPI, KOSDAQ, KONEX) and the meaning of empty string (all markets), and 'num_results' with default (20) and maximum (100). This adds significant meaning beyond the bare schema, making parameter usage clear.
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 explicitly states '종목명 키워드로 KRX 상장종목을 검색합니다' (Search KRX-listed stocks by stock name keyword), clearly identifying the action (search), resource (KRX-listed stocks), and scope (by keyword). This distinguishes it from sibling tools like get_stock_price or compare_stocks, focusing on keyword-based lookup rather than price or comparison.
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 implies usage for keyword-based stock search but does not explicitly state when to use it over alternatives or mention any exclusions. It documents the parameters and defaults, which implicitly guides usage (e.g., setting market to filter), but lacks direct comparison to sibling tools, so the guidance is only implied.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- Alicense-qualityDmaintenanceProvides KOSPI/KOSDAQ stock data including ticker lookup, OHLCV, market capitalization, fundamentals, and trading volume by investor type.Last updatedMIT
- FlicenseAqualityAmaintenanceAI-ready data for investors and stewardship specialists who wants to have easy access to agm & governance related disclosures for Korean stocksLast updated2511
- AlicenseAqualityCmaintenanceProvides Korean stock market data, including DART electronic disclosures and KRX trading information, enabling users to query company profiles, financial statements, and stock trade details via MCP clients.Last updated9MIT
- Alicense-qualityDmaintenanceEnables AI-powered analysis of Korean stock market data and corporate disclosures using official DART and KRX APIs.Last updated299ISC