From a3953597debbcc54f56b00a87cbdc53712ccf28c Mon Sep 17 00:00:00 2001 From: 491034170 <142008960+491034170@users.noreply.github.com> Date: Sun, 14 Jun 2026 12:39:20 +0800 Subject: [PATCH 1/3] Document Windows MCP config path variants --- docs/doc/developer/mcp/setup.mdx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/doc/developer/mcp/setup.mdx b/docs/doc/developer/mcp/setup.mdx index 152e99305d8..f28a04a90e0 100644 --- a/docs/doc/developer/mcp/setup.mdx +++ b/docs/doc/developer/mcp/setup.mdx @@ -52,7 +52,8 @@ The fastest way to get started — no installation required. **Config file location:** - macOS: `~/Library/Application Support/Claude/claude_desktop_config.json` - - Windows: `%APPDATA%\Claude\claude_desktop_config.json` + - Windows PowerShell: `$env:APPDATA\Claude\claude_desktop_config.json` + - Windows cmd: `%APPDATA%\Claude\claude_desktop_config.json` Go to **Cursor Settings → MCP** and add a new server: From 69da29cbdb4562d2ed877643295cda12ffb790d4 Mon Sep 17 00:00:00 2001 From: 491034170 <142008960+491034170@users.noreply.github.com> Date: Sun, 14 Jun 2026 12:39:21 +0800 Subject: [PATCH 2/3] Use PowerShell MCP log command on Windows --- docs/doc/developer/mcp/troubleshooting.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/doc/developer/mcp/troubleshooting.mdx b/docs/doc/developer/mcp/troubleshooting.mdx index 9fa880985ec..133dffb7356 100644 --- a/docs/doc/developer/mcp/troubleshooting.mdx +++ b/docs/doc/developer/mcp/troubleshooting.mdx @@ -86,8 +86,8 @@ description: "Debug and fix common MCP connection issues" # macOS tail -n 20 -f ~/Library/Logs/Claude/mcp-server-omi.log - # Windows - type %APPDATA%\Claude\logs\mcp-server-omi.log + # Windows PowerShell + Get-Content "$env:APPDATA\Claude\logs\mcp-server-omi.log" -Tail 20 -Wait ``` From 3f21fda3d5ce4b6e3f350fe2cc6d846f795c6051 Mon Sep 17 00:00:00 2001 From: 491034170 <142008960+491034170@users.noreply.github.com> Date: Sun, 14 Jun 2026 12:39:21 +0800 Subject: [PATCH 3/3] Add Windows MCP log follow command --- mcp/README.md | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/mcp/README.md b/mcp/README.md index da85d9e293d..d608a9f22f6 100644 --- a/mcp/README.md +++ b/mcp/README.md @@ -98,8 +98,17 @@ cd path/to/servers/src/omi npx @modelcontextprotocol/inspector uv run mcp-server-omi ``` -Running `tail -n 20 -f ~/Library/Logs/Claude/mcp-server-omi.log` will show the logs from the server and may -help you debug any issues. +To follow Claude Desktop logs while debugging: + +```bash +# macOS +tail -n 20 -f ~/Library/Logs/Claude/mcp-server-omi.log +``` + +```powershell +# Windows PowerShell +Get-Content "$env:APPDATA\Claude\logs\mcp-server-omi.log" -Tail 20 -Wait +``` ## Advanced