LogoSTMCP
Download
freqtrade-mcp

Freqtrade-MCP

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.

Tools

1. fetch_market_data

Fetch OHLCV data for a pair.

2. fetch_bot_status

Get open trade status.

3. fetch_profit

Get profit summary.

4. fetch_balance

Get account balance.

5. fetch_performance

Get performance metrics.

6. fetch_whitelist

Get whitelist of pairs.

7. fetch_blacklist

Get blacklist of pairs.

8. fetch_trades

Get trade history.

9. fetch_config

Get bot configuration.

10. fetch_locks

Get trade locks.

11. place_trade

Place a buy/sell trade.

12. start_bot

Start the bot.

13. stop_bot

Stop the bot.

14. reload_config

Reload bot configuration.

15. add_blacklist

Add pair to blacklist.

16. delete_blacklist

Remove pair from blacklist.

17. delete_lock

Delete a trade lock.

Open Graph image for Freqtrade-MCP

JSON Config

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

Useful Links

Information