@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.
Files changed (2) hide show
  1. package/index.js +2 -3
  2. 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('✅ Pixel Normal Edit MCP Bridge v2 (stdio mode)');
493
- console.error(` Session : ${SESSION}`);
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) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pixel-normal-edit/mcp",
3
- "version": "2.0.2",
3
+ "version": "2.0.3",
4
4
  "description": "MCP server for Pixel Normal Edit canvas - enables AI agents to draw pixel art",
5
5
  "main": "index.js",
6
6
  "bin": {