Skip to main content
Glama
iuk-ink

Binance MCP Server

布林带

indicator_bbands
Read-only

Calculate Bollinger Bands from Binance futures K-line data, returning lower, middle, and upper band values for technical analysis.

Instructions

直连版:拉取 K 线后计算布林带,返回稳定三元组序列(lower / middle / upper)。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
periodNo
symbolYes
intervalYes
deviationMultiplierNo

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 / deviationMultiplier / description
      Removed value: -"标准差倍数"
    • addedInput schema / properties / deviationMultiplier / maximum
      Added value: +10
    • 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"
      +}
    • removedInput schema / properties / period / description
      Removed value: -"计算周期"
    • changedInput schema / properties / period / maximum
      Previous value: -9007199254740991New value: +250
    • 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"
      +]
  2. Changed5 schema fields changedv2.0.3
    • addedInput schema / properties / deviationMultiplier / minimum
      Added value: +0.1
    • removedInput schema / properties / interval
      Removed value: -{
      -  "description": "计算周期",
      -  "minimum": 2,
      -  "type": "number"
      -}
    • addedInput schema / properties / period
      Added value: +{
      +  "default": 20,
      +  "description": "计算周期",
      +  "maximum": 9007199254740991,
      +  "minimum": 2,
      +  "type": "integer"
      +}
    • changedInput schema / properties / values / description
      Previous value: -"价格数组"New value: +"价格序列(收盘价)"
    • changedInput schema / required
      Previous value: -[
      -  "values",
      -  "interval"
      -]New value: +[
      +  "values"
      +]
  3. First observedv2.0.2

TDQS

C2.9/5.0
Behavior3/5

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

The annotations already mark the tool as read-only and open-world safe. The description adds that it first pulls K-lines and returns a stable triple sequence, which is useful context beyond the annotations. However, it does not clarify what 'stable' means, how limits are applied, or whether the output aligns with the K-line history length, so transparency remains partial.

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, focused sentence with the key behavioral fact and output shape front-loaded. It is concise and easy to parse. It is slightly sparse, but there is no waste or unnecessary repetition.

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?

For a five-parameter indicator tool with no output schema, the description leaves too much unspecified: the meaning and defaults of the parameters, how the returned triple is structured over the K-line window, and how it behaves with different limits. The annotations cover safety but not operational details, so an agent still lacks enough to use the parameters confidently.

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

Parameters2/5

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

Schema description coverage is 0%, and the description does not compensate: it does not explain 'limit', 'period', 'deviationMultiplier', 'symbol', or 'interval'. Although the description ties the calculation to K-lines and the Bollinger output, it provides almost no semantic value for the five parameters, which are critical for correct invocation.

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 concrete behavior: it pulls K-line data, computes Bollinger Bands, and returns a lower/middle/upper triple sequence. It goes beyond restating the title and gives the return shape. It does not explicitly differentiate from sibling indicators, though 'direct version' hints at an implementation 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?

There is no guidance about when to use this tool instead of the many sibling indicator tools such as indicator_bb_rsi or indicator_sma. The phrase '直连版' hints at a direct-vs-composite usage context, but no conditions, alternatives, or exclusions are provided, leaving the agent to guess.

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