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
This commit is contained in:
Devid HW
2026-04-22 08:42:26 +07:00
parent 5366b45c36
commit 55e0822051
+3 -3
View File
@@ -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"
}