Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion docs/doc/developer/mcp/setup.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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`
</Tab>
<Tab title="Cursor" icon="i-cursor">
Go to **Cursor Settings → MCP** and add a new server:
Expand Down
4 changes: 2 additions & 2 deletions docs/doc/developer/mcp/troubleshooting.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
```
</Tab>
</Tabs>
Expand Down
13 changes: 11 additions & 2 deletions mcp/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Loading