- Home
- MCP servers
- Korea Stock Analyzer
Korea Stock Analyzer
- typescript
9
GitHub Stars
typescript
Language
6 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
You can run a real-time Korean stock market analysis MCP server that offers financial metrics, technical indicators, DCF valuation, news sentiment, flow data, peer comparison, and six proven investment strategies. Use it locally via NPX or connect remotely through a serverless endpoint to query and analyze Korea’s KOSPI and KOSDAQ data.
How to use
You install and run the Korea Stock Analyzer MCP Server as an MCP endpoint that your client can connect to. You can access two main usage modes: a local, NPX-based MCP server you start on demand, or a remote HTTP MCP endpoint that serves data from a serverless deployment. Once running, you can ask the MCP to fetch real-time market data, compute financial ratios, generate technical indicators, value stocks with DCF, monitor news sentiment, track smart-money flow, compare peers, and apply six investment master strategies. Use your MCP client to invoke any of the available tools and pass natural language prompts like “Analyze Samsung Electronics stock” or “Calculate DCF for SK Hynix.”
How to install
Prerequisites: ensure you have Node.js 18 or newer and npm or npx installed on your machine. You do not need a separate Python setup for the NPX path, as required Python handling is automatic when using the MCP server.
Option A: Run with NPX (quick start) - no installation needed.
npx @mrbaeksang/korea-stock-analyzer-mcp
Option B: Remote MCP (serverless) - use the server URL to run the MCP endpoint.
{
"mcpServers": [
{
"type": "http",
"name": "korea_stock_analyzer_http",
"url": "https://korea-stock-analyzer-mcp.vercel.app/api/mcp",
"args": []
}
]
}
Additional setup and notes
Two main configuration methods are available. You can either connect through a remote HTTP MCP endpoint or run a local NPX-based MCP server. The remote endpoint is hosted serverless and accessible via a single URL. The local option runs on your machine and is started with an NPX command.
If you prefer a persistent local setup, you can configure Claude Desktop or another MCP client to execute the NPX command with the appropriate arguments.
Available tools
get_financial_data
Fetches PER, PBR, EPS, ROE, and dividend yield for stocks.
get_technical_indicators
Calculates moving averages, RSI, MACD, and 52-week high/low.
calculate_dcf
Performs intrinsic value calculations using discounted cash flow.
search_news
Retrieves latest news and sentiment analysis related to equities.
get_supply_demand
Analyzes institutional and foreign investor flow.
compare_peers
Compares a company against industry peers.
analyze_equity
Runs a complete analysis using all investment strategies.