Agent Plugins Marketplace
All plugins

bitbank-lab-mcp

v0.1.1

Experimental MCP server for bitbank — botters lab community edition. Market data, technical analysis, charting, and Private API trading tools.

CodexClaude Code1 Skill1 MCP serverstdio

By tjackietLicense: MIT4 GitHub starsUpdated last week

Directory evidence

Runtimes
Codex and Claude Code
Parsed components
2 skill or MCP entries
Source updated
Sep 14, 2026
Manifest status
Canonical path parsed

The directory validates manifest shape and source location. It does not execute the plugin or provide a security endorsement. Review the indexing methodology

Install bitbank-lab-mcp for Codex and Claude Code

Installs for the current user
codex plugin marketplace add IchenDEV/agent-plugin-mkt
codex plugin marketplace upgrade agent-plugin-marketplace
codex plugin add bitbank-lab-mcp@agent-plugin-marketplace

Paste and run these commands in a terminal with Codex. They add and refresh the PluginsMP catalog, then install this plugin.

The installer fetches third-party code from the source repository shown on this page. This directory validates manifest structure and source location, but does not perform a security audit; review the manifest, components, and source before installing.

Get the source manually
git clone https://github.com/bitbankinc/bitbank-lab-mcp

Clone the source repository, then follow its setup instructions to add the plugin to a compatible client. The repository root is the plugin root.

Plugin files

bitbank-lab-mcp/
├── .codex-plugin/plugin.json
├── .claude-plugin/plugin.json
├── skills/investment-onboarding/SKILL.md
└── .mcp.json

Included Skills1

investment-onboardingskills/investment-onboarding/SKILL.md

暗号資産投資の進め方をユーザーと一緒に決めるためのスキル。 「何から始めればいい?」「どう運用すれば?」「投資戦略を相談したい」 「暗号資産で増やしたい」「bitbank で運用したい」「ビットコインで稼ぎたい」など、 上流の方針が定まっていないユーザー発話を起点に、リスク許容度・運用スタイル・ 具体的な戦術を最小限の問い(最大 3 問)で絞り込み、該当する戦術ガイド (references/style-*.md)と MCP ツールへ誘導する。 ユーザーが既に運用スタイル(資本保全 / インカム / グロース / アクティブ / レバレッジ)や戦術を明言している場合は、ヒアリングを省略して該当ガイドに 直接バトンする。

MCP servers1

bitbankstdio
command
npx
args
-y bitbank-lab-mcp

Plugin manifests2

.codex-plugin/plugin.json
{
  "name": "bitbank-lab-mcp",
  "version": "0.1.1",
  "description": "Experimental MCP server for bitbank — botters lab community edition. Market data, technical analysis, charting, and Private API trading tools.",
  "author": {
    "name": "tjackiet",
    "url": "https://github.com/tjackiet"
  },
  "homepage": "https://github.com/tjackiet/bitbank-lab-mcp",
  "repository": "https://github.com/tjackiet/bitbank-lab-mcp",
  "license": "MIT",
  "keywords": [
    "bitbank",
    "cryptocurrency",
    "trading",
    "market-data",
    "technical-analysis",
    "mcp",
    "botters-lab"
  ],
  "mcpServers": {
    "bitbank": {
      "command": "npx",
      "args": [
        "-y",
        "bitbank-lab-mcp"
      ]
    }
  },
  "interface": {
    "displayName": "bitbank lab MCP",
    "shortDescription": "bitbank の市場データ・テクニカル分析・取引ツールを提供する実験版 MCP サーバー(botters lab コミュニティ版)",
    "longDescription": "bitbank の公開 API から価格・板情報・約定履歴・ローソク足を取得し、テクニカル指標 (SMA / RSI / BB / 一目均衡表 / MACD)、フロー分析、ボラティリティ、板圧力、パターン検出、総合スコア判定までを LLM に提供する MCP サーバー。Visualizer 用整形データと SVG/PNG チャート出力に対応。BITBANK_API_KEY / BITBANK_API_SECRET を設定すると、資産確認・注文 (preview→execute の 2 段階確認) 等の Private API ツールが追加で有効化される。bitbank 公式版(bitbankinc/bitbank-mcp-server)の先行実験版で、botters lab コミュニティ向けに新機能を先行リリースしている。",
    "developerName": "tjackiet",
    "category": "Finance",
    "capabilities": [
      "Read",
      "Write",
      "Interactive"
    ],
    "websiteURL": "https://github.com/tjackiet/bitbank-lab-mcp",
    "defaultPrompt": [
      "BTC の今の市場状況を analyze_market_signal で総合判定して、根拠と寄与度も教えて。",
      "おはようレポートを出して。",
      "直近 1 週間でテクニカル的に上向きの仮想通貨を 3 つ教えて。"
    ]
  }
}
.claude-plugin/plugin.json
{
  "name": "bitbank-lab-mcp",
  "version": "0.1.1",
  "description": "Experimental MCP server for bitbank — botters lab community edition. Market data, technical analysis, charting, and Private API trading tools.",
  "author": {
    "name": "tjackiet",
    "url": "https://github.com/tjackiet"
  },
  "homepage": "https://github.com/tjackiet/bitbank-lab-mcp",
  "repository": "https://github.com/tjackiet/bitbank-lab-mcp",
  "license": "MIT",
  "keywords": [
    "bitbank",
    "cryptocurrency",
    "trading",
    "market-data",
    "technical-analysis",
    "mcp"
  ],
  "userConfig": {
    "api_key": {
      "type": "string",
      "title": "bitbank API key",
      "description": "Optional. Set together with API secret to enable Private API tools (assets, orders, portfolio). Leave blank for public/market data only.",
      "sensitive": true
    },
    "api_secret": {
      "type": "string",
      "title": "bitbank API secret",
      "description": "Optional. Required only if you set the API key above. Issue at https://app.bitbank.cc/account/api with read+trade permissions.",
      "sensitive": true
    }
  },
  "mcpServers": {
    "bitbank": {
      "command": "npx",
      "args": [
        "-y",
        "bitbank-lab-mcp"
      ],
      "env": {
        "BITBANK_API_KEY": "${user_config.api_key}",
        "BITBANK_API_SECRET": "${user_config.api_secret}",
        "LOG_LEVEL": "info",
        "NO_COLOR": "1"
      }
    }
  }
}

If you maintain this plugin, link to this source-backed listing from your README so users can review its manifest and indexed components.

[bitbank-lab-mcp on Agent Plugins Marketplace](https://pluginsmp.com/plugins/bitbank-lab-mcp)