drio
Open app

kospi-kosdaq-stock-server

Source

An MCP server that provides KOSPI/KOSDAQ stock data using FastMCP

Catalog onlyCatalog onlySTDIO

Overview

KOSPI/KOSDAQ Stock Server is an MCP server that provides real-time stock data for KOSPI and KOSDAQ using FastMCP.

To use the server, install it via Smithery or manually, configure it in your claude_desktop_config.json, and then interact with it through commands in Claude.

  • Lookup KOSPI/KOSDAQ ticker symbols and names - Retrieve OHLCV (Open/High/Low/Close/Volume) data for specific stocks - Access market capitalization and fundamental data (PER/PBR/Dividend Yield) - Get trading volume by investor type for specific stocks
  1. Analyzing stock performance over time
  2. Researching investment opportunities in KOSPI/KOSDAQ stocks
  3. Monitoring market trends and investor behavior

Add to your AI client

Use these steps to connect kospi-kosdaq-stock-server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

{
  "mcpServers": {
    "kospi-kosdaq-stock-server-dragon1086": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-kospi-kosdaq-stock-server-dragon1086"
      ]
    }
  }
}

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

{
  "mcpServers": {
    "kospi-kosdaq-stock-server-dragon1086": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-kospi-kosdaq-stock-server-dragon1086"
      ]
    }
  }
}

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

{
  "mcpServers": {
    "kospi-kosdaq-stock-server-dragon1086": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-kospi-kosdaq-stock-server-dragon1086"
      ]
    }
  }
}

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

{
  "servers": {
    "kospi-kosdaq-stock-server-dragon1086": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-kospi-kosdaq-stock-server-dragon1086"
      ]
    }
  }
}

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "kospi-kosdaq-stock-server-dragon1086": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-kospi-kosdaq-stock-server-dragon1086"
      ]
    }
  }
}

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "kospi-kosdaq-stock-server-dragon1086": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-kospi-kosdaq-stock-server-dragon1086"
      ]
    }
  }
}

FAQ

What data can I retrieve?

You can retrieve OHLCV data, market capitalization, fundamental data, and trading volume by investor type.

Is there a limit to the number of tickers I can load?

No, you can load all available KOSPI and KOSDAQ tickers at once.

How do I install the server?

You can install it via Smithery or manually by creating a virtual environment and using pip.