drawio-mcp-server 1.0.0 → 1.0.2

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/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  Let's do some Vibe Diagramming with the most wide-spread diagramming tool called Draw.io (Diagrams.net).
4
4
 
5
+ [![Build project](https://github.com/lgazo/drawio-mcp-server/actions/workflows/ci.yml/badge.svg)](https://github.com/lgazo/drawio-mcp-server/actions/workflows/ci.yml)
6
+
5
7
  ## Introduction
6
8
 
7
9
  The Draw.io MCP server is a [Model Context Protocol (MCP)](https://modelcontextprotocol.io) implementation that brings powerful diagramming capabilities to AI agentic systems. This integration enables:
package/build/index.js CHANGED
@@ -1,3 +1,4 @@
1
+ #!/usr/bin/env node
1
2
  import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
2
3
  import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
3
4
  import { z } from "zod";
@@ -45,15 +46,15 @@ const ws_handler = {
45
46
  const app = uWS
46
47
  .App()
47
48
  .ws("/*", ws_handler)
48
- .listen(3000, (token) => {
49
+ .listen(3333, (token) => {
49
50
  if (token) {
50
- log.debug("Listening to port 3000");
51
+ log.debug("Listening to port 3333");
51
52
  }
52
53
  });
53
54
  // Create server instance
54
55
  const server = new McpServer({
55
56
  name: "drawio-mcp-server",
56
- version: "1.0.0",
57
+ version: "1.0.1",
57
58
  capabilities: {
58
59
  resources: {},
59
60
  tools: {},
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "drawio-mcp-server",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "Provides Draw.io services to MCP Clients",
5
5
  "type": "module",
6
6
  "main": "index.js",