stockmarketscan/mcp-server
OfficialStockMarketScan MCP Server
株式スクリーナー、チャートパターン、オプションフロー、シグナル — LLMクライアント内で米国株リサーチを行うための18のツール。
サーバーURL:
https://mcp.stockmarketscan.com/mcpトランスポート: HTTP/SSE (Server-Sent Events)
認証: BYOK — 個人の
sms_*APIキーをX-API-Keyヘッダーとして渡しますプラン: stockmarketscan.com の Basic または Pro プランが必要です。オプションフローツールには「Options Flow」アドオンが必要です。
APIキーの取得: stockmarketscan.com/settings
インストールガイドと例: stockmarketscan.com/mcp
利用可能な18のツール
カテゴリ | ツール |
スクリーナー (3) |
|
チャートパターン (2) |
|
オプションフロー (4) |
|
株式情報 (2) |
|
コンポジット (2) |
|
市場コンテキスト (3) |
|
教育 (1) |
|
これらに加え、生存確認用の ping があります。
インストール — Claude Desktop
claude_desktop_config.json を編集します:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%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 | ✓ |
サポート
インストールガイド: stockmarketscan.com/mcp
お問い合わせ: contact@stockmarketscan.com
ソースからの実行
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 :3333Docker
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 ヘッダーを渡してください。
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