A simple Model Context Protocol (MCP) server for price lookup and trading across multiple cryptocurrency exchanges.
demo.mp4
- Python 3.10 or higher
Currently supports spot trading only.
- Upbit
- Gate.io
- Binance
More exchanges will be added in the future.
Add the authentication information required by each exchange to the environment variables.
For example, Upbit is as follows:
UPBIT_ACCESS_KEY="your-access-key"
UPBIT_SECRET_KEY="your-secret-key"
- Create a new exchange class inheriting from
CryptoExchange
abstract class - Implement required API methods
- Write test cases
- Register the new exchange in the factory class
# Install test dependencies
uv pip install -e ".[test]"
# Run tests
pytest