Developer Troubleshooting EngineInstant OS Fixes
MCP Error Decoder
Search exact error strings and stack traces from Claude Desktop, Cursor, and OpenAI Codex CLI. Inspect root causes and copy verified terminal fixes.
Category:
Configuration SyntaxHigh
JSON-RPC error -32700: Parse error / Invalid Windows backslashes
Symptom
Config file fails to load or server crashes on startup with 'SyntaxError: Bad escaped character in JSON'.
Root Cause
Single backslashes used in Windows file paths (e.g. 'C:\Projects') violate JSON string escape rules.
Remediation & Quick Fix
Replace single backslashes with forward slashes (e.g. 'C:/Projects') or double-escaped backslashes ('C:\\Projects').
OS Diagnostic Commands:
mac
# Not applicable to macOSwindows
# Format Windows paths with forward slashes in JSON:
"args": ["C:/Projects/my-app"]linux
# Not applicable to LinuxVerified Configuration Example:
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-filesystem", "C:/Projects/workspace"]
}
}
}