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.

Scan Config in Linter
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 macOS
windows
# Format Windows paths with forward slashes in JSON:
"args": ["C:/Projects/my-app"]
linux
# Not applicable to Linux
Verified Configuration Example:
{
  "mcpServers": {
    "filesystem": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-filesystem", "C:/Projects/workspace"]
    }
  }
}