@gluip/chart-canvas-mcp 0.1.3 → 0.1.4

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/dist/api.js CHANGED
@@ -48,8 +48,8 @@ export async function startApiServer() {
48
48
  });
49
49
  app.listen(PORT, () => {
50
50
  serverPort = PORT;
51
- console.error(`Server running on http://localhost:${PORT}`);
52
- console.error(`- API: http://localhost:${PORT}/state`);
53
- console.error(`- Frontend: http://localhost:${PORT}`);
51
+ console.log(`Server running on http://localhost:${PORT}`);
52
+ console.log(`- API: http://localhost:${PORT}/state`);
53
+ console.log(`- Frontend: http://localhost:${PORT}`);
54
54
  });
55
55
  }
package/dist/index.js CHANGED
@@ -210,7 +210,7 @@ async function main() {
210
210
  // Start MCP server on stdio
211
211
  const transport = new StdioServerTransport();
212
212
  await server.connect(transport);
213
- console.error("Chart Canvas MCP Server running");
213
+ console.log("Chart Canvas MCP Server running");
214
214
  }
215
215
  main().catch((error) => {
216
216
  console.error("Fatal error:", error);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@gluip/chart-canvas-mcp",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "MCP server for creating interactive visualizations (charts, diagrams, tables) through AI assistants",
5
5
  "author": "Martijn",
6
6
  "license": "MIT",