Fetch recent whale transactions with optional filters for blockchain, minimum value, and limit
Retrieve detailed information about a specific transaction by its ID
Whale Tracker provides real-time monitoring and analysis of large cryptocurrency transactions (known as "whale" movements) by integrating with the Whale Alert API. This tool enables cryptocurrency enthusiasts, traders, and analysts to stay informed about significant market movements that could impact cryptocurrency prices. With Whale Tracker, you can fetch recent whale transactions with customizable filters for specific blockchains, minimum transaction values, and result limits. The server also allows you to retrieve detailed information about specific transactions by their ID, making it easy to investigate notable market activities.
Whale Tracker is a powerful tool for monitoring large cryptocurrency transactions ("whale movements") that could potentially impact market prices. This guide will help you set up and use the Whale Tracker MCP server effectively.
Before installing Whale Tracker, ensure you have:
The easiest way to install Whale Tracker is through Smithery:
npx -y @smithery/cli install @kukapay/whale-tracker-mcp --client claude
git clone https://github.com/kukapay/whale-tracker-mcp.git
cd whale-tracker-mcp
# Using uv
uv add "mcp[cli]" httpx python-dotenv
# Using pip
pip install mcp httpx python-dotenv
.env
file in the project root with your API key:WHALE_ALERT_API_KEY=your_api_key_here
mcp install whale_tracker.py --name "WhaleTracker" -f .env
Once installed, you can interact with Whale Tracker in your MCP-compatible client using natural language. Here are some example queries:
To run the server in development mode with the MCP Inspector:
mcp dev whale_tracker.py --with-editable .
This opens a web interface where you can explore and test the server's tools, resources, and prompts.
Your Whale Alert API key is required for the server to function. You can configure it in several ways:
.env
file with WHALE_ALERT_API_KEY=your_key_here
mcp install whale_tracker.py -v WHALE_ALERT_API_KEY=your_key_here