Skip to main content
Glama
Cognitive-Stack

Volume Wall Detector MCP

볼륨 벽 감지기 MCP 서버 📊

🔌 Cline, Cursor, Claude Desktop 및 기타 MCP 클라이언트와 호환됩니다!

Volume Wall Detector MCP는 모든 MCP 클라이언트와 원활하게 작동합니다.

MCP(Model Context Protocol)는 AI 시스템이 다양한 데이터 소스 및 도구와 원활하게 상호 작용할 수 있도록 하는 개방형 표준으로, 안전한 양방향 연결을 용이하게 합니다.

Volume Wall Detector MCP 서버는 다음을 제공합니다.

  • 실시간 주식 거래량 분석

  • 중요한 가격 수준(볼륨 벽) 감지

  • 거래 불균형 추적 및 분석

  • 시간 외 거래 분석

  • MongoDB 기반 데이터 지속성

필수 조건 🔧

시작하기 전에 다음 사항을 확인하세요.

  • MongoDB 인스턴스 실행 중

  • 주식 시장 API 접근

  • Node.js(v20 이상)

  • Git 설치됨(Git 설치 방법을 사용하는 경우에만 필요)

Related MCP server: crypto-orderbook-mcp

볼륨 벽 감지기 MCP 서버 설치 ⚡

NPX로 실행

지엑스피1

Smithery를 통해 설치

Smithery를 통해 Claude Desktop용 Volume Wall Detector MCP 서버를 자동으로 설치하려면:

npx -y @smithery/cli install volume-wall-detector-mcp --client claude

MCP 클라이언트 구성 ⚙️

Cline 구성 🤖

  1. Cline MCP 설정 파일을 엽니다.

# 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
  1. 볼륨 벽 감지기 서버 구성을 추가합니다.

{
  "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": []
    }
  }
}

커서 구성 🖥️

참고 : 커서 버전 0.45.6 이상이 필요합니다.

  1. 커서 설정 열기

  2. Open MCP로 이동

  3. "새로운 글로벌 MCP 서버 추가"를 클릭하세요.

  4. 다음 정보를 입력하세요:

    • 이름 : "볼륨-벽-검출기-mcp"

    • 유형 : "명령"

    • 명령어 : GXP5

Claude Desktop 구성하기 🖥️

Claude Desktop 구성 파일을 생성하거나 편집합니다.

macOS의 경우:

code "$HOME/Library/Application Support/Claude/claude_desktop_config.json"

Windows의 경우:

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"
      }
    }
  }
}

특허

MIT

Available Tools

3 tools
analyze-stockC

Analyze stock data including volume and value analysis

ParametersJSON Schema
NameRequiredDescriptionDefault
daysNoNumber of days to analyze (optional)
symbolYesStock symbol to analyze

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions 'analyze' but doesn't specify whether this is a read-only operation, requires authentication, has rate limits, or what the output format might be. The description is vague about behavioral traits, failing to compensate for the lack of annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that directly states the tool's purpose without unnecessary words. It is appropriately sized and front-loaded, though it could be slightly more structured by separating key points. Every sentence earns its place, but there's room for minor improvement in clarity.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity of stock analysis, lack of annotations, and no output schema, the description is incomplete. It doesn't explain what 'volume and value analysis' entails, the return values, or any behavioral constraints. The description fails to provide sufficient context for an agent to understand the tool's full scope and usage.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema description coverage is 100%, with clear descriptions for both parameters ('days' and 'symbol') in the input schema. The description adds no additional meaning beyond what the schema provides, such as explaining how 'volume and value analysis' relates to these parameters. Baseline score of 3 is appropriate as the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose as analyzing stock data with specific mention of 'volume and value analysis', providing a verb ('analyze') and resource ('stock data'). However, it doesn't explicitly differentiate from sibling tools like 'fetch-order-book' or 'fetch-trades', which might also involve stock data analysis but with different focuses or methods.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus the sibling tools ('fetch-order-book' and 'fetch-trades'), nor does it mention any prerequisites, exclusions, or alternative contexts. It lacks explicit usage instructions, leaving the agent to infer based on tool names alone.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

fetch-order-bookC

Fetch current order book data for a symbol

ParametersJSON Schema
NameRequiredDescriptionDefault
symbolYesStock symbol to fetch order book for

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It states the tool fetches data, implying a read-only operation, but doesn't specify critical details like rate limits, authentication requirements, data freshness, or error handling. This leaves significant gaps in understanding the tool's behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that directly states the tool's purpose without unnecessary words. It is front-loaded with the core action and resource, making it highly concise and well-structured for quick comprehension.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the lack of annotations and output schema, the description is insufficiently complete. It doesn't explain what the order book data includes (e.g., bid/ask prices, depths), how it's formatted, or any limitations, leaving the agent with incomplete context for effective use.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% description coverage, with the 'symbol' parameter clearly documented as 'Stock symbol to fetch order book for'. The description adds no additional parameter semantics beyond this, so it meets the baseline for high schema coverage without compensating value.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('fetch') and resource ('current order book data for a symbol'), making the purpose immediately understandable. However, it doesn't explicitly differentiate from sibling tools like 'analyze-stock' or 'fetch-trades', which might also involve stock data retrieval, preventing a perfect score.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives like 'analyze-stock' or 'fetch-trades'. It lacks context about specific use cases, prerequisites, or exclusions, leaving the agent to infer usage based on tool names alone.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

fetch-tradesC

Fetch recent trades for a symbol

ParametersJSON Schema
NameRequiredDescriptionDefault
symbolYesStock symbol to fetch trades for

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It states the action ('fetch') but doesn't describe traits like whether this is a read-only operation, potential rate limits, authentication needs, or what 'recent' means (e.g., time range, pagination). This leaves significant gaps for a tool that likely queries external data.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence with zero waste—it directly states the tool's purpose without unnecessary words. It's appropriately sized for a simple tool and front-loaded with the core action.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no annotations and no output schema, the description is incomplete for a tool that fetches data. It doesn't explain what 'recent' entails, the return format, or any behavioral context, which are critical for an agent to use it correctly. The simplicity of the tool doesn't compensate for these omissions.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% description coverage, with the 'symbol' parameter clearly documented. The description adds no additional meaning beyond what the schema provides (e.g., it doesn't clarify format examples or constraints), so it meets the baseline of 3 where the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('fetch') and target ('recent trades for a symbol'), providing a specific verb+resource combination. However, it doesn't explicitly differentiate from sibling tools like 'analyze-stock' or 'fetch-order-book', which might also involve symbol data, so it misses full sibling distinction.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives like 'analyze-stock' or 'fetch-order-book'. It implies usage for recent trades but offers no exclusions, prerequisites, or context about when it's appropriate, leaving the agent to guess based on tool names alone.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 3 tool updatesv1.0.0
    • First observedanalyze-stock
    • First observedfetch-order-book
    • First observedfetch-trades

TDQS

B3.2/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: analyze-stock focuses on data analysis, fetch-order-book retrieves order book data, and fetch-trades gets trade history. There is no overlap in functionality, making it easy for an agent to select the right tool without confusion.

Naming Consistency4/5

The naming is mostly consistent with a verb-noun pattern (analyze-stock, fetch-order-book, fetch-trades), using kebab-case throughout. The minor deviation is that analyze-stock uses 'analyze' while the others use 'fetch', but this is reasonable given the different actions.

Tool Count3/5

With only 3 tools, the set feels thin for a server named 'Volume Wall Detector MCP', which suggests a focus on volume analysis in trading. While the tools cover basic data fetching and analysis, more tools might be expected for comprehensive volume detection or trading operations.

Completeness3/5

The tools provide core data retrieval (order book, trades) and analysis, but there are notable gaps for a volume-focused detector, such as tools for real-time volume alerts, historical volume trends, or integration with trading actions. The surface is functional but incomplete for advanced volume analysis workflows.

Maintenance

ActivityInactive
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

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/Cognitive-Stack/volume-wall-detector-mcp'

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