drawio-mcp-server 1.0.0 → 1.0.1
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 +2 -0
- package/build/index.js +3 -3
- package/package.json +1 -1
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
|
+
[](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
|
@@ -45,15 +45,15 @@ const ws_handler = {
|
|
|
45
45
|
const app = uWS
|
|
46
46
|
.App()
|
|
47
47
|
.ws("/*", ws_handler)
|
|
48
|
-
.listen(
|
|
48
|
+
.listen(3333, (token) => {
|
|
49
49
|
if (token) {
|
|
50
|
-
log.debug("Listening to port
|
|
50
|
+
log.debug("Listening to port 3333");
|
|
51
51
|
}
|
|
52
52
|
});
|
|
53
53
|
// Create server instance
|
|
54
54
|
const server = new McpServer({
|
|
55
55
|
name: "drawio-mcp-server",
|
|
56
|
-
version: "1.0.
|
|
56
|
+
version: "1.0.1",
|
|
57
57
|
capabilities: {
|
|
58
58
|
resources: {},
|
|
59
59
|
tools: {},
|