交易量墙壁检测 MCP 服务器是一款强大的工具,它基于模型上下文协议(MCP)开放标准,可与各种 MCP 客户端无缝集成,实现实时股票交易量分析、交易量墙检测等功能,助力用户深入洞察股票市场。
模型上下文协议 (MCP) 是一个开放标准,使 AI 系统能够与其交互各种数据源和工具,实现安全的双向连接。Volume Wall Detector MCP 服务器与任何 MCP 客户端无缝集成,提供以下实用功能:
在开始之前,请确保您具备以下条件:
npx -y volume-wall-detector-mcp@latest
要自动为 Claude Desktop 安装 Volume Wall Detector MCP 服务器:
npx -y @smithery/cli install volume-wall-detector-mcp --client claude
# 适用于 macOS:
code ~/Library/Application\ Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json
# 适用于 Windows:
code %APPDATA%\Code\User\globalStorage\saoudrizwan.claude-dev\settings\cline_mcp_settings.json
{
"mcpServers": {
"volume-wall-detector-mcp": {
"command": "npx",
"args": ["-y", "volume-wall-detector-mcp@latest"],
"env": {
"TIMEZONE": "GMT+7",
"API_BASE_URL": "your-api-url-here",
"MONGO_HOST": "localhost",
"MONGO_PORT": "27017",
"MONGO_DATABASE": "volume_wall_detector",
"MONGO_USER": "admin",
"MONGO_PASSWORD": "password", // 注意:此处应填写实际密码
"PAGE_SIZE": "50",
"TRADES_TO_FETCH": "10000",
"DAYS_TO_FETCH": "1",
"TRANSPORT_TYPE": "stdio",
"PORT": "8080"
}
}
}
}
对于 Cursor 用户,请参考其文档以集成 Volume Wall Detector MCP 服务器。
~/.config/claude/mcp_settings.json
{
"mcpServers": {
"volume-wall-detector-mcp": {
"command": "npx",
"args": ["-p", "3000", "volume-wall-detector-mcp@latest"],
"env": {
"NODE_ENV": "production",
"PORT": "3000"
}
}
}
}
本项目采用 MIT 许可证。