MCP server for MetaTrader 5 — compile, backtest & optimize MQL5 EAs on macOS and Linux
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Add to claude_desktop_config.json:
{
"mcpServers": {
"mt5-quant": {
"command": "cargo",
"args": [
"run",
"--",
"mt5-quant"
]
}
}
}
Run in terminal:
claude mcp add mt5-quant cargo run -- mt5-quant
Add to .cursor/mcp.json:
{
"mcpServers": {
"mt5-quant": {
"command": "cargo",
"args": [
"run",
"--",
"mt5-quant"
]
}
}
}