Skip to main content
Glama
iuk-ink

Binance MCP Server

波动率状态分类

indicator_volatility_regime
Read-only

Identify the current volatility regime—squeeze, low, normal, high, or expansion—by measuring Bollinger Bandwidth percentile, enabling informed position sizing decisions.

Instructions

直连版:基于布林带宽百分位判断 squeeze / low_volatility / normal / high_volatility / expansion,辅助仓位管理。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
symbolYes
bbPeriodNo
intervalYes
lookbackNo带宽百分位历史比较窗口(K 线根数)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
regimeYes
bandwidthYes
percentileYes

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed10 schema fields changedv3.0.1
    • changedInput schema / $schema
      Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • removedInput schema / properties / bbPeriod / description
      Removed value: -"BBands 周期"
    • changedInput schema / properties / bbPeriod / maximum
      Previous value: -9007199254740991New value: +250
    • addedInput schema / properties / interval
      Added value: +{
      +  "enum": [
      +    "1m",
      +    "3m",
      +    "5m",
      +    "15m",
      +    "30m",
      +    "1h",
      +    "2h",
      +    "4h",
      +    "6h",
      +    "8h",
      +    "12h",
      +    "1d",
      +    "3d",
      +    "1w",
      +    "1M"
      +  ],
      +  "type": "string"
      +}
    • addedInput schema / properties / limit
      Added value: +{
      +  "default": 200,
      +  "maximum": 1500,
      +  "minimum": 2,
      +  "type": "integer"
      +}
    • changedInput schema / properties / lookback / description
      Previous value: -"历史比较窗口"New value: +"带宽百分位历史比较窗口(K 线根数)"
    • addedInput schema / properties / symbol
      Added value: +{
      +  "type": "string"
      +}
    • removedInput schema / properties / values
      Removed value: -{
      -  "description": "价格序列(收盘价)",
      -  "items": {
      -    "type": "number"
      -  },
      -  "minItems": 1,
      -  "type": "array"
      -}
    • changedInput schema / required
      Previous value: -[
      -  "values"
      -]New value: +[
      +  "symbol",
      +  "interval"
      +]
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "$schema": "https://json-schema.org/draft/2020-12/schema",
      +  "additionalProperties": false,
      +  "properties": {
      +    "bandwidth": {
      +      "type": "number"
      +    },
      +    "percentile": {
      +      "type": "number"
      +    },
      +    "regime": {
      +      "enum": [
      +        "squeeze",
      +        "low_volatility",
      +        "normal",
      +        "high_volatility",
      +        "expansion"
      +      ],
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "regime",
      +    "bandwidth",
      +    "percentile"
      +  ],
      +  "type": "object"
      +}
  2. Addedv2.0.3

TDQS

B3.4/5.0
Behavior3/5

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

Annotations already provide readOnlyHint=true and openWorldHint=true, so the description only needs to supplement actual behavior. It adds the algorithm source (Bollinger bandwidth percentile) and output categories, which give useful transparency. It still omits minor behavioral details such as what happens with insufficient data or whether the output is a series or single-of-state, though output schema metrics may cover some of this.

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 compact one-liner that carries the formula, categories, and intended purpose without redundant wording. The qualifier '直连版' is slightly unexplained but does not bloat the sentence. It is near-ideal in size and accessibility.

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

Completeness3/5

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

An output schema exists, so the return-value description is not strictly needed. The formula, output states, and position-management purpose give the core context, but the absence of sibling-tool routing and full parameter population left the agent somewhat limited when disambiguating this tool, from Bandwidth and ATR or setting the right limit.

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?

Schema description coverage is only 20% since only, lookback has a schema description. The description indirectly connotes meaning for bbPeriod and lookback via '布林带宽百分位', but it does not expressly name or explain all parameters like limit, symbol, or interval. It partially compensates for the missing schema documentation, so semantics are clearer than a bare param-list but still incomplete.

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 states a clear verb-based role: it classifies volatility regimes from Bollinger bandwidth percentile and enumerates the five output states (squeeze, low_volatility, normal, high_volatility, expansion). This makes the tool functional-purpose obvious, though it does not explicitly contrast with sibling volatility indicators such as bbands or ATR.

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

Usage Guidelines3/5

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

The phrase '辅助仓位管理' provides a plausible use context (position sizing decisions). However, it does not say when to choose this over alternations like indicator_bbands or indicator_atr, nor defines exclusion conditions or setup prerequisites. The use case is inferred, not explicitly routed.

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

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/iuk-ink/binance-mcp-server'

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