This project is a Model Context Protocol (MCP) server for bitbank.
- get_ticker
- Get ticker data for a trading pair
- input:
pair(string): Trading pair to get ticker data for. eg. btc_jpy, eth_jpy
- 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"
]
}
}
}- 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"]
}
}
}This project is licensed under the MIT License - see the LICENSE file for details.