bitbank MCP Server
MCP server for bitbank cryptocurrency exchange enabling ticker, candlestick, order book, and transaction data retrieval.
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
- Install Node.js
- Install Claude desktop or other MCP client
- Configure the MCP server in Claude Desktop following the MCP quickstart guide
{
"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
- Install Docker for your OS.
- Install Claude desktop or other MCP client
- Configure the MCP server in Claude Desktop following the MCP quickstart guide
{
"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.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.