kukapay/freqtrade-mcp
An MCP server that integrates with the Freqtrade cryptocurrency trading bot.
Platform-specific configuration:
{
"mcpServers": {
"freqtrade-mcp": {
"command": "npx",
"args": [
"-y",
"freqtrade-mcp"
]
}
}
}Add the config above to .claude/settings.json under the mcpServers key.
An MCP server that integrates with the Freqtrade cryptocurrency trading bot via its REST API, enabling seamless AI agent interaction for automated trading operation.
For more crypto-related MCP servers, see the Kukapay MCP servers.
git clone https://github.com/kukapay/freqtrade-mcp.git
cd freqtrade-mcp Using pip:
pip install freqtrade-client mcp[cli] Or with uv (optional):
uv add freqtrade-client "mcp[cli]" "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"
}
}
}Enable the rest API by adding the api_server section to your configuration and setting api_server.enabled to true.
Sample configuration:
"api_server": {
"enabled": true,
"listen_ip_address": "127.0.0.1",
"listen_port": 8080,
"verbosity": "error",
"enable_openapi": false,
"jwt_secret_key"Loading reviews...