An MCP server that provides KOSPI/KOSDAQ stock data using FastMCP
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"kospi-kosdaq-stock-server": {
"command": "<see-readme>",
"args": []
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
An MCP server that provides KOSPI/KOSDAQ stock data from KRX Data Marketplace.
No automated test available for this server. Check the GitHub README for setup instructions.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
No package registry to scan.
Click any tool to inspect its schema.
stock://tickersReturns all KOSPI/KOSDAQ ticker symbols and names
stock://tickers
stock://index-tickersReturns index ticker information (KOSPI: 1001, KOSPI 200: 1028, KOSPI 100: 1034, KOSPI 50: 1035, KOSDAQ: 2001, KOSDAQ 150: 2203)
stock://index-tickers
stock://data-sourcesReturns current data source status
stock://data-sources
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in finance
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
A Model Context Protocol server for building an investor agent
AI agents get on-chain identity, credentials, reputation, escrow, and persistent memory on XRPL.
Remote MCP server to integrate and validate self-hosted PayRam deployments.
MCP Security Weekly
Get CVE alerts and security updates for Kospi Kosdaq Stock Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An MCP server that provides KOSPI/KOSDAQ stock data from KRX Data Marketplace.
Since December 27, 2024, KRX Data Marketplace requires Kakao/Naver login for data access. This version implements:
# Required: Kakao login credentials
KAKAO_ID=your_kakao_id
KAKAO_PW=your_kakao_password
Important: Your Kakao account must have 2-step verification (2FA) disabled. On first login, you may need to approve the login request via KakaoTalk.
# Install Playwright and Chromium browser
pip install playwright
playwright install chromium
npx -y @smithery/cli install @dragon1086/kospi-kosdaq-stock-server --client claude
# Create and activate a virtual environment
uv venv .venv
source .venv/bin/activate # On Unix/macOS
# .venv\Scripts\activate # On Windows
# Install the package
uv pip install kospi-kosdaq-stock-server
# Install Playwright browser
playwright install chromium
code ~/Library/Application\ Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"kospi-kosdaq": {
"command": "uvx",
"args": ["kospi_kosdaq_stock_server"],
"env": {
"KAKAO_ID": "your_kakao_id",
"KAKAO_PW": "your_kakao_password"
}
}
}
}
Open the config file at %APPDATA%/Claude/claude_desktop_config.json
Add the same configuration as above
Restart Claude Desktop
load_all_tickersLoads all ticker symbols and names for KOSPI and KOSDAQ.
get_stock_ohlcvRetrieves OHLCV (Open/High/Low/Close/Volume) data for a specific stock.
fromdate (string, required): Start date (YYYYMMDD)todate (string, required): End date (YYYYMMDD)ticker (string, required): Stock ticker symbol (e.g., "005930")adjusted (boolean, optional): Use adjusted prices (default: True)get_stock_market_capRetrieves market capitalization data for a specific stock.
fromdate (string, required): Start date (YYYYMMDD)todate (string, required): End date (YYYYMMDD)ticker (string, required): Stock ticker symbolget_stock_fundamentalRetrieves fundamental data (PER/PBR/Dividend Yield) for a specific stock.
fromdate (string, required): Start date (YYYYMMDD)todate (string, required): End date (YYYYMMDD)ticker (string, required): Stock ticker symbol