From 5366b45c3670a0ecf06ec35eec47d4dfc0064d21 Mon Sep 17 00:00:00 2001 From: Devid HW Date: Wed, 22 Apr 2026 08:40:36 +0700 Subject: [PATCH] docs: fix incorrect binary paths in CLAUDE.md - Changed /target/release/mt5-quant to /mt5-quant for prebuilt binary path - Added path notes explaining prebuilt vs dev build locations - Fixed both Full Example and Environment Variables sections --- docs/CLAUDE.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/docs/CLAUDE.md b/docs/CLAUDE.md index 4cc4b3b..a2eccd4 100644 --- a/docs/CLAUDE.md +++ b/docs/CLAUDE.md @@ -57,7 +57,7 @@ Edit `~/Library/Application Support/Claude/claude_desktop_config.json` (macOS) o { "mcpServers": { "mt5-quant": { - "command": "/Users/name/mt5-quant/target/release/mt5-quant" + "command": "/Users/name/mt5-quant/mt5-quant" }, "github": { "command": "npx", @@ -70,6 +70,10 @@ Edit `~/Library/Application Support/Claude/claude_desktop_config.json` (macOS) o } ``` +**Path notes:** +- Prebuilt binary: `/Users/name/mt5-quant/mt5-quant` (extracted from release tarball) +- Dev build: `/Users/name/mt5-quant/target/release/mt5-quant` (after `cargo build --release`) + ## Environment Variables Claude Desktop supports `${env:VAR_NAME}` syntax for environment variable substitution: @@ -78,7 +82,7 @@ Claude Desktop supports `${env:VAR_NAME}` syntax for environment variable substi { "mcpServers": { "mt5-quant": { - "command": "/Users/name/mt5-quant/target/release/mt5-quant", + "command": "/Users/name/mt5-quant/mt5-quant", "env": { "MT5_MCP_HOME": "${env:HOME}/.config/mt5-quant" }