Volume Wall Detector
STDIOReal-time stock trading volume analysis and detection of significant price levels.
Real-time stock trading volume analysis and detection of significant price levels.
🔌 Compatible with Cline, Cursor, Claude Desktop, and any other MCP Clients!
Volume Wall Detector MCP works seamlessly with any MCP client
The Model Context Protocol (MCP) is an open standard that enables AI systems to interact seamlessly with various data sources and tools, facilitating secure, two-way connections.
The Volume Wall Detector MCP server provides:
Before you begin, ensure you have:
npx -y volume-wall-detector-mcp@latest
To install Volume Wall Detector MCP Server for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install volume-wall-detector-mcp --client claude
# For macOS: code ~/Library/Application\ Support/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json # For 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", "MONGO_AUTH_SOURCE": "admin", "MONGO_AUTH_MECHANISM": "SCRAM-SHA-1", "PAGE_SIZE": "50", "TRADES_TO_FETCH": "10000", "DAYS_TO_FETCH": "1", "TRANSPORT_TYPE": "stdio", "PORT": "8080" }, "disabled": false, "autoApprove": [] } } }
Note: Requires Cursor version 0.45.6 or higher
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 MONGO_AUTH_SOURCE=admin MONGO_AUTH_MECHANISM=SCRAM-SHA-1 PAGE_SIZE=50 TRADES_TO_FETCH=10000 DAYS_TO_FETCH=1 npx -y volume-wall-detector-mcp@latest
Create or edit the Claude Desktop configuration file:
code "$HOME/Library/Application Support/Claude/claude_desktop_config.json"
code %APPDATA%\Claude\claude_desktop_config.json
Add the configuration:
{ "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", "MONGO_AUTH_SOURCE": "admin", "MONGO_AUTH_MECHANISM": "SCRAM-SHA-1", "PAGE_SIZE": "50", "TRADES_TO_FETCH": "10000", "DAYS_TO_FETCH": "1", "TRANSPORT_TYPE": "stdio", "PORT": "8080" } } } }
MIT