Volume Wall Detector
About
Provides real-time stock trading volume analysis, detects significant price levels (volume walls), and tracks trading imbalances.
Details
- Author
- cognitive-stack
- GitHub stars
- 7
- Downloads
- 280
- Categories
- Other, Finance
- Tags
- #trading, #data-analysis
Jump to
- Real-time stock trading volume analysis
- Detection of significant price levels (volume walls)
- Trading imbalance tracking and analysis
- After-hours trading analysis
- MongoDB-based data persistence
Setting up with Highlight
This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
Volume Wall DetectorCommand (node, npx, python, etc.)Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
- Enable "Start Automatically" if you want the plugin to start when Highlight launches
From the repository
Volume Wall Detector Mcp Server Installation
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
- Add the Volume Wall Detector server 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" }, "disabled": false, "autoApprove": [] } } }
Note: Requires Cursor version 0.45.6 or higher
- Open Cursor Settings
- Navigate to Open MCP
- Click on "Add New Global MCP Server"
- Fill out the following information:
- Name: "volume-wall-detector-mcp"
- Type: "command"
- Command:
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
{ "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" } } } }
AI trading memory layer for MT5/forex with 15 MCP tools — store/recall trades, pattern discovery, strategy evolution, and Outcome-Weighted Memory.
EUR settlement for AI agents. USDC/EURC to EUR via SEPA Instant. Trust scoring (KYA 0-100), market data, crypto analytics, AI tools.
Full-lifecycle algorithmic trading: describe strategies in plain English, AI generates code, backtest on real data, deploy live to 10+ brokers. Stocks, options, crypto, futures. Free tier available.
MCP server for cryptocurrency asset prices, exchange rates, and market metadata via Crypto APIs
Free MCP server for real-time cryptocurrency data. 5 tools: get_price, get_market_overview, get_token_info, get_historical_prices, get_trending. 70+ tokens supported via CoinGecko API.
Provides real-time cryptocurrency market data using the CoinGecko API.
Live Stock Market Data, SEC Filings, Stock Screener, and analysis
Crypto research & trading MCP — swaps, earn, perps, Polymarket across major chains.
Financial market intelligence with 12 tools: real-time stock quotes, crypto prices, technical analysis (RSI, MACD, Bollinger Bands), market overview, and portfolio tracking. Zero API keys required.
Institutional-grade orderflow intelligence for AI agents. Detects spoofing, buy-absorption, and liquidity events with a 15-30s lead time over price action. Audited by Manus AI (0.85 confidence)
Claude Desktop / Cursor
Paste into your MCP client config file to install this server.
{
"mcpServers": {
"volume wall detector": {
"volume-wall-detector-mcp": {
"command": "npx",
"args": [
"-y",
"volume-wall-detector-mcp@latest"
]
}
}
}
}
McpServers
{
"volume-wall-detector-mcp": {
"command": "npx",
"args": [
"-y",
"volume-wall-detector-mcp@latest"
]
}
}
Volume Wall Detector MCP Server Installation ⚡
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
- Add the Volume Wall Detector server 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" }, "disabled": false, "autoApprove": [] } } }
Note: Requires Cursor version 0.45.6 or higher
- Open Cursor Settings
- Navigate to Open MCP
- Click on "Add New Global MCP Server"
- Fill out the following information:
- Name: "volume-wall-detector-mcp"
- Type: "command"
- Command:
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
{ "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" } } } }
AI trading memory layer for MT5/forex with 15 MCP tools — store/recall trades, pattern discovery, strategy evolution, and Outcome-Weighted Memory.
EUR settlement for AI agents. USDC/EURC to EUR via SEPA Instant. Trust scoring (KYA 0-100), market data, crypto analytics, AI tools.
Full-lifecycle algorithmic trading: describe strategies in plain English, AI generates code, backtest on real data, deploy live to 10+ brokers. Stocks, options, crypto, futures. Free tier available.
MCP server for cryptocurrency asset prices, exchange rates, and market metadata via Crypto APIs
Free MCP server for real-time cryptocurrency data. 5 tools: get_price, get_market_overview, get_token_info, get_historical_prices, get_trending. 70+ tokens supported via CoinGecko API.
Provides real-time cryptocurrency market data using the CoinGecko API.
Live Stock Market Data, SEC Filings, Stock Screener, and analysis
Crypto research & trading MCP — swaps, earn, perps, Polymarket across major chains.
Financial market intelligence with 12 tools: real-time stock quotes, crypto prices, technical analysis (RSI, MACD, Bollinger Bands), market overview, and portfolio tracking. Zero API keys required.
Institutional-grade orderflow intelligence for AI agents. Detects spoofing, buy-absorption, and liquidity events with a 15-30s lead time over price action. Audited by Manus AI (0.85 confidence)
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.



