npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

bitbank-mcp-server

v0.2.0

Published

bitbank mcp server

Readme

bitbank MCP Server

This project is a Model Context Protocol (MCP) server for bitbank.

Tools

get_ticker

単一ペアのティッカーを取得(/ticker)。価格・出来高・24h高安。

  • input:
    • pair (string): Trading pair (e.g., btc_jpy, eth_jpy)

get_tickers_jpy

全JPYペアのティッカーを取得(/tickers_jpy)。24h変動率付き。キャッシュ10秒。

  • input: なし

get_candles

ローソク足を取得(/candlestick)。OHLCVデータ。

  • input:
    • pair (string): Trading pair (e.g., btc_jpy)
    • type (string): Candle type (1min, 5min, 15min, 30min, 1hour, 4hour, 8hour, 12hour, 1day, 1week, 1month)
    • date (string, optional): Date in YYYYMMDD (for minute/hour) or YYYY (for day/week/month)
    • limit (number): Number of candles to return (default: 200, max: 1000)

get_depth

板の生データ取得(/depth API直接)。差分計算・壁検出・圧力分析の元データ。

  • input:
    • pair (string): Trading pair (e.g., btc_jpy)
    • maxLevels (number): Maximum number of price levels (default: 200, max: 500)

get_transactions

約定履歴を取得(/transactions)。直近の約定データ。日付指定可。買い/売り比率を算出。

  • input:
    • pair (string): Trading pair (e.g., btc_jpy)
    • limit (number): Number of transactions to return (default: 100, max: 1000)
    • date (string, optional): Date in YYYYMMDD format

Usage

npx

{
  "mcpServers": {
    "bitbank": {
      "command": "npx",
      "args": [
        "-y",
        "bitbank-mcp-server"
      ]
    }
  }
}

If npx cannot be executed, running which npx and specifying the command directly may resolve the issue.

  • Example: macOS with Volta
{
  "mcpServers": {
    "bitbank": {
      "command": "/Users/xxxx/.volta/bin/npx",
      "args": [
        "-y",
        "bitbank-mcp-server"
      ]
    }
  }
}

Docker

{
  "mcpServers": {
    "bitbank": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "bitbankinc/bitbank-mcp-server"]
    }
  }
}

License

This project is licensed under the MIT License - see the LICENSE file for details.