npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

stockmatrix-mcp

v0.1.4

Published

StockMatrix MCP Server - Korean stock market theme lifecycle analysis for AI agents

Readme

stockmatrix-mcp

MCP server for Korean stock market theme lifecycle analysis. Provides real-time theme scores, lifecycle stages, related stocks, and news for 250+ KOSPI/KOSDAQ investment themes.

Installation

npx -y stockmatrix-mcp

Configuration

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "stockmatrix": {
      "command": "npx",
      "args": ["-y", "stockmatrix-mcp"]
    }
  }
}

Cursor

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "stockmatrix": {
      "command": "npx",
      "args": ["-y", "stockmatrix-mcp"]
    }
  }
}

VS Code

Add to .vscode/mcp.json:

{
  "servers": {
    "stockmatrix": {
      "command": "npx",
      "args": ["-y", "stockmatrix-mcp"]
    }
  }
}

Available Tools

get_theme_ranking

한국 주식시장 테마 생명주기 랭킹을 조회합니다. Retrieves theme lifecycle rankings by stage.

| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | stage | string | No | Filter by stage: emerging, growth, peak, decline, reigniting |

get_theme_detail

특정 테마의 상세 정보를 조회합니다. Gets detailed theme info including score, stage, related stocks, and news.

| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | theme_id | string (UUID) | Yes | Theme UUID |

get_theme_history

테마의 최근 30일 점수 이력을 조회합니다. Returns 30-day score history for a theme.

| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | theme_id | string (UUID) | Yes | Theme UUID |

search_themes

테마를 검색합니다. Searches themes by name in Korean or English.

| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | query | string | Yes | Search query (e.g. "AI", "반도체", "삼성전자") |

get_stock_theme

특정 종목이 속한 테마를 조회합니다. Finds themes related to a specific stock code.

| Parameter | Type | Required | Description | |-----------|------|----------|-------------| | symbol | string | Yes | 6-digit Korean stock code (e.g. "005930" for Samsung) |

Environment Variables

| Variable | Default | Description | |----------|---------|-------------| | STOCKMATRIX_API_URL | https://stockmatrix.co.kr | API base URL |

Examples

"What are the hottest stock themes in Korea right now?"get_theme_ranking with stage: "growth"

"Tell me about the semiconductor theme"search_themes with query: "반도체"get_theme_detail with the returned theme ID

"What themes is Samsung Electronics part of?"get_stock_theme with symbol: "005930"

Data Sources

  • Naver DataLab search interest trends
  • Naver Finance theme stock data
  • Naver News article collection
  • KRX (Korea Exchange) market data

License

MIT

Links