@pixel-normal-edit/mcp 2.0.2 → 2.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.js +2 -3
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -489,9 +489,8 @@ const HTTP_PORT = process.env.HTTP_PORT || (process.argv.includes('--http') ? 34
|
|
|
489
489
|
async function startStdio() {
|
|
490
490
|
const transport = new StdioServerTransport();
|
|
491
491
|
await server.connect(transport);
|
|
492
|
-
console.error
|
|
493
|
-
|
|
494
|
-
console.error(` Editor : http://localhost:5173?mcp_session=${SESSION}`);
|
|
492
|
+
// Disabled console.error output because some MCP clients merge stdout and stderr,
|
|
493
|
+
// causing JSON parsing errors (e.g. invalid character 'â' looking for beginning of value)
|
|
495
494
|
}
|
|
496
495
|
|
|
497
496
|
async function startHttp(port) {
|