Skip to main content
Glama
stockmarketscan

stockmarketscan/mcp-server

Official

StockMarketScan MCP Server

株式スクリーナー、チャートパターン、オプションフロー、シグナル — LLMクライアント内で米国株リサーチを行うための18のツール。

  • サーバーURL: https://mcp.stockmarketscan.com/mcp

  • トランスポート: HTTP/SSE (Server-Sent Events)

  • 認証: BYOK — 個人の sms_* APIキーを X-API-Key ヘッダーとして渡します

  • プラン: stockmarketscan.comBasic または Pro プランが必要です。オプションフローツールには「Options Flow」アドオンが必要です。

  • APIキーの取得: stockmarketscan.com/settings

  • インストールガイドと例: stockmarketscan.com/mcp

利用可能な18のツール

カテゴリ

ツール

スクリーナー (3)

list_screeners, get_screener_data, search_stocks_in_screeners

チャートパターン (2)

get_chart_patterns, search_patterns

オプションフロー (4)

get_options_flow_overview, get_options_flow_timeline, get_options_flow_signals, get_unusual_options_activity

株式情報 (2)

get_stock_info, get_candles

コンポジット (2)

get_stock_report, search_setups

市場コンテキスト (3)

get_market_momentum, get_trends, get_trend_connections

教育 (1)

explain_concept

これらに加え、生存確認用の ping があります。

インストール — Claude Desktop

claude_desktop_config.json を編集します:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

  • Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "stockmarketscan": {
      "command": "npx",
      "args": ["-y", "mcp-remote", "https://mcp.stockmarketscan.com/mcp"],
      "headers": {
        "X-API-Key": "sms_your_key_here"
      }
    }
  }
}

Claude Desktopを再起動します。ツールピッカーに stockmarketscan が表示されるはずです。

インストール — Cursor

Settings → Features → Model Context Protocol → Add New MCP Server:

{
  "name": "stockmarketscan",
  "url": "https://mcp.stockmarketscan.com/mcp",
  "headers": {
    "X-API-Key": "sms_your_key_here"
  }
}

インストール — Continue (VS Code / JetBrains)

~/.continue/config.json を編集します:

{
  "experimental": {
    "modelContextProtocolServers": [
      {
        "transport": {
          "type": "sse",
          "url": "https://mcp.stockmarketscan.com/mcp",
          "headers": {
            "X-API-Key": "sms_your_key_here"
          }
        }
      }
    ]
  }
}

プロンプトの例

サーバー接続後、Claude DesktopやCursorに直接入力してください:

  • "Which stocks appear in both hot-prospects and golden-cross today?"

  • "Show me AMD's options flow history for the last 30 days."

  • "Find hot-prospects that are forming a cup and handle pattern."

  • "Build a full stock report for NVDA — screeners, patterns, options flow, market context."

  • "What are today's strongest bullish options flow signals?"

  • "Which contracts traded today at vol/OI > 3 with over $1M premium?"

認証の仕組み (BYOK)

MCPサーバーは独自のAPIキーを保持しません。各クライアントがあなたの個人の sms_* キーを渡し、サーバーがセッションごとに一度検証を行い、あなたに代わって api/v1/* へのツール呼び出しをプロキシします。レート制限やクォータはあなたが管理し、設定からいつでもキーを更新できます。

レート制限

プラン

1分あたり

1日あたり

オプションフロー

Free

Basic

15

500

Pro

30

2,000

サポート

ソースからの実行

git clone https://github.com/stockmarketscan/mcp-server.git
cd mcp-server
npm install
STOCKMARKETSCAN_API_KEY=sms_your_key_here npm run dev   # stdio (for Claude Desktop local)
npm run dev:http                                        # HTTP/SSE on :3333

Docker

docker build -t stockmarketscan-mcp .
docker run -p 3333:3333 -e MCP_TRANSPORT=http stockmarketscan-mcp

コンテナは $PORT (Railway) または $MCP_PORT (ローカル) でリッスンします。MCPクライアントを http://localhost:3333/mcp に向け、X-API-Key ヘッダーを渡してください。

-
security - not tested
-
license - not tested
-
quality - not tested

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/stockmarketscan/mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server