6ce8808948
New debugging/diagnostics tools for crash investigation: - diagnose_wine: Check Wine installation and prefix health - get_mt5_logs: Get terminal/tester/metaeditor logs - search_mt5_errors: Search logs for error patterns - check_mt5_process: Check MT5 process status - kill_mt5_process: Kill stuck MT5 processes - check_system_resources: Check disk/memory/CPU - validate_mt5_config: Validate MT5 configuration - get_wine_prefix_info: Wine prefix details - get_backtest_crash_info: Investigate backtest failures Total tools: 85 Documentation updated in README.md and MCP_TOOLS.md
31 lines
783 B
TOML
31 lines
783 B
TOML
[package]
|
|
name = "mt5-quant"
|
|
version = "1.30.0"
|
|
edition = "2021"
|
|
description = "MT5-Quant MCP Server - Exposes MT5 backtest and optimization tools via MCP"
|
|
authors = ["masdevid <masdevid@example.com>"]
|
|
|
|
[[bin]]
|
|
name = "mt5-quant"
|
|
path = "src/main.rs"
|
|
|
|
[dependencies]
|
|
tokio = { version = "1.0", features = ["full"] }
|
|
serde = { version = "1.0", features = ["derive"] }
|
|
serde_json = "1.0"
|
|
serde_yaml = "0.9"
|
|
clap = { version = "4.0", features = ["derive"] }
|
|
anyhow = "1.0"
|
|
tracing = "0.1"
|
|
tracing-subscriber = "0.3"
|
|
uuid = { version = "1.0", features = ["v4"] }
|
|
regex = "1.0"
|
|
dirs = "5.0"
|
|
walkdir = "2.0"
|
|
chrono = { version = "0.4", features = ["serde"] }
|
|
encoding_rs = "0.8"
|
|
tempfile = "3.0"
|
|
roxmltree = "0.21.1"
|
|
rusqlite = { version = "0.31", features = ["bundled"] }
|
|
base64 = "0.22"
|