bitbankinc/bitbank-mcp-server
3.2
If you are the rightful owner of bitbank-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to dayong@mcphub.com.
The bitbank MCP Server is a Model Context Protocol server designed for interacting with the bitbank cryptocurrency exchange.
Tools
1
Resources
0
Prompts
0
bitbank MCP Server
This project is a Model Context Protocol (MCP) server for bitbank.
Tools
- get_ticker
- Get ticker data for a trading pair
- input:
pair(string): Trading pair to get ticker data for. eg. btc_jpy, eth_jpy
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 file for details.