D53: fix code example clarity in dual-server architecture doc

Agent-Logs-Url: https://github.com/qinfendebingshuo/guanghulab/sessions/ebb35e45-901d-4d9c-89b1-4c8c13d8c244

Co-authored-by: qinfendebingshuo <207279273+qinfendebingshuo@users.noreply.github.com>
This commit is contained in:
copilot-swe-agent[bot] 2026-04-05 04:48:29 +00:00 committed by GitHub
parent 128f2a717b
commit 27d00aea6e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 3 deletions

View File

@ -101,9 +101,8 @@ AGE OS的壳-核分离哲学,延伸到基础设施层就是这个形态。
### 1. MCP网关连接地址
```javascript
// server/app/server.js 中的MCP代理
// 改前:
const mcpTarget = 'http://127.0.0.1:3100';
// 改后:
// 改前: const mcpTarget = 'http://127.0.0.1:3100';
// 改后:
const mcpTarget = `http://${process.env.ZY_MCP_HOST || '127.0.0.1'}:3100`;
```