Skip to main content
Glama
iuk-ink

Binance MCP Server

布林带 + RSI 组合

indicator_bb_rsi
Read-only

Compute Bollinger Bands, RSI, %B, and price zones from Binance futures K-lines to assess volatility and momentum, helping identify potential overbought or oversold conditions.

Instructions

直连版:拉取 K 线后同时计算布林带完整数据、RSI、%B 与价格分区。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
periodNo
symbolYes
intervalYes
rsiPeriodNo
deviationMultiplierNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
rsiYes
zoneYes
lowerYes
upperYes
middleYes
percentBYes

Schema Changelog

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

  1. Changed13 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: -"BBands 标准差倍数"
    • 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: -"BBands 周期"
    • changedInput schema / properties / period / maximum
      Previous value: -9007199254740991New value: +250
    • removedInput schema / properties / rsiPeriod / description
      Removed value: -"RSI 周期"
    • changedInput schema / properties / rsiPeriod / 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"
      +]
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "$schema": "https://json-schema.org/draft/2020-12/schema",
      +  "additionalProperties": false,
      +  "properties": {
      +    "lower": {
      +      "type": "number"
      +    },
      +    "middle": {
      +      "type": "number"
      +    },
      +    "percentB": {
      +      "type": "number"
      +    },
      +    "rsi": {
      +      "type": "number"
      +    },
      +    "upper": {
      +      "type": "number"
      +    },
      +    "zone": {
      +      "enum": [
      +        "above",
      +        "upper_half",
      +        "lower_half",
      +        "below"
      +      ],
      +      "type": "string"
      +    }
      +  },
      +  "required": [
      +    "upper",
      +    "middle",
      +    "lower",
      +    "percentB",
      +    "zone",
      +    "rsi"
      +  ],
      +  "type": "object"
      +}
  2. Addedv2.0.3

TDQS

B3.2/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true and openWorldHint=true, so the safety profile is covered. The description adds useful behavioral context — it fetches K-line data (拉取 K 线) and performs all computations in one pass — which conveys the dependency on exchange data. However, the term '直连版' is ambiguous and unexplained, and the meaning of '%B 与价格分区' outputs is not clarified, so the added value is moderate rather than strong.

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?

A single Japanese sentence that front-loads the action and lists the computable outputs without any filler or repetition of the input schema. The '直连版' prefix is cryptic and slightly undermines the line, but the rest of the description is economical and well-ordered.

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?

The output schema exists and covers return values, so that par is not needed here. However, the meaning of '直连版', the mapping of parameters to each sub-computation, and any notion of K线 history depth/limits are missing. plus no hint to differentiate selection from the close sibling indicators. A complete definition for a combined-indicator tool should add these.

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%, so the description carries the full burden for explaining parameters, but it does not return an instruction for any parameter: how period relates to BB, how rsiPeriod relates to RSI, what limit governs, or what deviatiate+multiplier does. Only the implicit mapping — K-lines to limit and the BB/RSI sections to the two period parameters — is guessable. For a 6-parameter tool with zero schema coverage, this does not compensate for the gap.

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 names a specific verb-resource combination: pull K-lines and simultaneously compute full Bollinger Band data, RSI, %B, and price zones, which is clear and distinct from the name alone. It differentiates from siblings like indicator_bbands and indicator_rsi by the '同时' (simultaneously) framing, though the term '直连版' is never explained and the distinction from other combo indicators like MACD+RSI is left implicit.

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?

Usage context is only implied: an agent can infer this tool should be chosen when both Bollinger and RSI are needed simultaneously, and the title supports the combination intent. However, there is no explicit when-to-use statement, no exclusions, and no routing guidance against the many sibling indicators like indicator_bbands, indicator_rsi, or indicator_macd_rsi.

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