Description
Describe the bug
A clear and concise description of what the bug is.
I am following the servers tutorial and as I am having several issues. I am trying to check the logs to understand what is going on but I can't locate the logs file as advertized below
To Reproduce
Steps to reproduce the behavior:
- Follow the tutorial : https://modelcontextprotocol.io/quickstart/server#claude-for-desktop-integration-issues
- Search for the logs as described in the Troubleshooting section
Expected behavior
A clear and concise description of what you expected to happen.
I expect to be able to locate mcp-server-SERVERNAME.log
files
Logs
If applicable, add logs to help explain your problem.
That's the problem
Additional context
I am on Windows but I have already tried the below
The equivalent location for Claude for Desktop logs in Windows would be:
Mac Path (from the image)
~/Library/Logs/Claude/
Windows Equivalent
C:\Users\YourUsername\AppData\Local\Claude\Logs\
This is where most application logs are stored in Windows.
Log Files Mapping
Mac: mcp.log → Windows: C:\Users\YourUsername\AppData\Local\Claude\Logs\mcp.log
Mac: mcp-server-SERVERNAME.log → Windows: C:\Users\YourUsername\AppData\Local\Claude\Logs\mcp-server-SERVERNAME.log
Windows Equivalent of the Tail Command
The command shown in the image (tail -n 20 -f ~/Library/Logs/Claude/mcp*.log) is used in macOS/Linux to continuously monitor log files.
powershell
Get-Content "C:\Users\YourUsername\AppData\Local\Claude\Logs\mcp.log" -Wait -Tail 20
Or, if you have Git Bash or WSL (Windows Subsystem for Linux) installed, you can use:
bash
tail -n 20 -f "C:\Users\YourUsername\AppData\Local\Claude\Logs\mcp.log"