From 55e08220510168cb7f02a6e75763aa057f1d0266 Mon Sep 17 00:00:00 2001 From: Devid HW Date: Wed, 22 Apr 2026 08:42:26 +0700 Subject: [PATCH] docs: fix prebuilt binary path in CLAUDE.md - Correct path: /mcp-server/bin/mt5-quant (not project root) - Verified by downloading and extracting actual release tarball - Updated both Full Example and Environment Variables sections --- docs/CLAUDE.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/CLAUDE.md b/docs/CLAUDE.md index a2eccd4..f5bdb59 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/mt5-quant" + "command": "/Users/name/mt5-quant/mcp-server/bin/mt5-quant" }, "github": { "command": "npx", @@ -71,7 +71,7 @@ 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) +- Prebuilt binary: `/Users/name/mt5-quant/mcp-server/bin/mt5-quant` (extracted from release tarball) - Dev build: `/Users/name/mt5-quant/target/release/mt5-quant` (after `cargo build --release`) ## Environment Variables @@ -82,7 +82,7 @@ Claude Desktop supports `${env:VAR_NAME}` syntax for environment variable substi { "mcpServers": { "mt5-quant": { - "command": "/Users/name/mt5-quant/mt5-quant", + "command": "/Users/name/mt5-quant/mcp-server/bin/mt5-quant", "env": { "MT5_MCP_HOME": "${env:HOME}/.config/mt5-quant" }