Skip to content

bitbankinc/bitbank-mcp-server

Repository files navigation

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

{
  "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.