We're trying to set up the Front MCP server on a Windows machine. Node.js is installed at the default location (C:\Program Files\nodejs\), but the path with spaces breaks the MCP command execution.
The error in Claude Desktop logs shows: 'C:\Program' is not recognized as an internal or external command
Our current config:
json
{
"mcpServers": {
"front-api": {
"command": "C:\\Program Files\\nodejs\\npx.cmd",
"args": ["-y", "mcp-remote", "https://dev.frontapp.com/mcp", "--header", "Authorization: Bearer <token>"]
}
}
}We worked around it by creating a wrapper at C:\tools\npx.cmd, but is there a recommended way to handle this? Is there a different command format that handles spaces in the path properly on Windows?