Claude Desktop in Windows 10 was unable to get MCP working in Claude Pro #767
Replies: 1 comment
|
The key symptom is that no logs folder is ever created. This means Claude Desktop is not even attempting to read your config file. Here are the Windows-specific causes and fixes. Most likely cause: Claude Desktop on Windows uses a different config pathOn Windows, newer versions of Claude Desktop may use a different config location than Check these paths (in order):
The fact that there are no logs at all strongly suggests the config file is in the wrong location. When Claude Desktop finds the config file but fails to launch the server, it still creates a logs folder. Zero logs = config not found. Quick test to find the actual pathCreate a deliberately broken config to confirm which path Claude reads: {"this_is_broken": truePlace it in each candidate location one at a time, restart Claude Desktop, and check if a logs folder appears. If logs appear with an error, you have found the correct path. Then replace with the valid config. Second likely cause: JSON escaping issues in your pathYour path {
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"C:\\Users\\User\\Documents\\Monith Developments\\Value\\_Stable\\_Title"
]
}
}
}Also: spaces in path segments (like "args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"\"C:\\Users\\User\\Documents\\Monith Developments\\Value\\_Stable\\_Title\""
]Or better, use a path without spaces as a test. Third: No Developer tab on Windows 10The missing Developer tab is a separate issue — it is a known limitation on some Claude Desktop Windows builds. It does not affect MCP functionality; it just means you cannot see debug logs in the UI. The hammer icon should still appear if MCP is configured correctly. Recommended test config (minimal, no spaces)
{
"mcpServers": {
"filesystem": {
"command": "npx.cmd",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"C:\\test_mcp"
]
}
}
}
If neither path works, run Claude Desktop from Command Prompt to see startup errors: "C:\Users\<User>\AppData\Local\Programs\Claude Desktop\Claude Desktop.exe"Watch the console output for config-related errors. |
Uh oh!
There was an error while loading. Please reload this page.
Pre-submission Checklist
Question Category
Your Question
Summary provided by Claude:
Environment
Goal
Set up the MCP Filesystem Server in Claude Desktop to give Claude read/write access to a local project folder at:
C:\Users\User\Documents\Monith Developments\Value_Stable_Title
What We Did
Configs Tried (all failed to produce hammer icon)
Config 1 — Standard:
Config 2 — Full path to npx.cmd:
Config 3 — Using cmd /c wrapper:
{
"mcpServers": {
"filesystem": {
"command": "C:\Program Files\nodejs\node.exe",
"args": [
"C:\Users\User\AppData\Local\npm-cache\_npx\a3241bba59c344f5\node_modules\@modelcontextprotocol\server-filesystem\dist\index.js",
"C:\Users\User\Documents\Monith Developments\Value_Stable_Title"]
}
}
}
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem",
"C:\Users\User\Documents\Monith Developments\Value_Stable_Title"],
"env": {
"APPDATA": "C:\Users\User\AppData\Roaming\"
}
}
}
}
All reactions