Freqtrade-MCP is an MCP server that integrates with the Freqtrade cryptocurrency trading bot via its REST API, enabling AI agents to interact seamlessly with automated trading operations.
Fetch OHLCV data for a pair.
Get open trade status.
Get profit summary.
Get account balance.
Get performance metrics.
Get whitelist of pairs.
Get blacklist of pairs.
Get trade history.
Get bot configuration.
Get trade locks.
Place a buy/sell trade.
Start the bot.
Stop the bot.
Reload bot configuration.
Add pair to blacklist.
Remove pair from blacklist.
Delete a trade lock.
{
"mcpServers": {
"freqtrade-mcp": {
"command": "uv",
"args": [
"--directory", "/your/path/to/freqtrade-mcp",
"run",
"__main__.py"
],
"env": {
"FREQTRADE_API_URL": "http://127.0.0.1:8080",
"FREQTRADE_USERNAME": "your_username",
"FREQTRADE_PASSWORD": "your_password"
}
}
}
}