@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 +3 -3
- package/dist/index.js +1 -1
- package/package.json +1 -1
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.
|
|
52
|
-
console.
|
|
53
|
-
console.
|
|
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.
|
|
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