@endiagram/mcp 0.1.17 → 0.2.0
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 +24 -18
- package/package.json +4 -4
package/README.md
CHANGED
|
@@ -1,8 +1,6 @@
|
|
|
1
1
|
# @endiagram/mcp
|
|
2
2
|
|
|
3
|
-
MCP server for [EN Diagram](https://endiagram.com) — structural analysis powered by
|
|
4
|
-
|
|
5
|
-
Write your system in plain text. Get back structural facts: bottlenecks, blast radius, flow landmarks, concurrency groups, and more. No AI inside the computation — every result is deterministic.
|
|
3
|
+
MCP server for [EN Diagram](https://endiagram.com) — deterministic structural analysis powered by graph theory. Every result is backed by a named mathematical theorem. No AI inside the computation.
|
|
6
4
|
|
|
7
5
|
## Installation
|
|
8
6
|
|
|
@@ -80,25 +78,34 @@ smithery mcp add dushyant30suthar/endiagram
|
|
|
80
78
|
|
|
81
79
|
| Tool | Description |
|
|
82
80
|
|------|-------------|
|
|
83
|
-
| `
|
|
84
|
-
| `
|
|
85
|
-
| `detail` | Deep structural analysis — concurrency, flow landmarks, resilience, dominator tree, min-cuts |
|
|
86
|
-
| `distance` | Shortest path between two nodes with subsystem crossing annotations |
|
|
87
|
-
| `diff` | Structural diff between two systems — topology, role, and subsystem changes |
|
|
88
|
-
| `trace` | Follow directed flow from node A to node B with role and subsystem annotations |
|
|
89
|
-
| `extract` | Extract a named subsystem as standalone EN source code |
|
|
90
|
-
| `impact` | Blast radius — remove a node and see what disconnects |
|
|
91
|
-
| `evolve` | Dry-run architectural changes — apply a patch and see the structural delta |
|
|
92
|
-
| `between` | Betweenness centrality — what fraction of all shortest paths flow through a node |
|
|
81
|
+
| `analyze` | System overview: shape, node roles, single points of failure, failure threshold, flow hotspots |
|
|
82
|
+
| `detail` | Concurrency, critical path, flow landmarks, resilience, dependency chains, dominator tree |
|
|
93
83
|
| `categorize` | Auto-discover subsystem boundaries from dependency structure |
|
|
94
|
-
| `
|
|
84
|
+
| `distance` | Structural distance between two nodes with the path between them |
|
|
85
|
+
| `diff` | Compare two systems — what changed structurally |
|
|
86
|
+
| `trace` | Follow directed flow from A to B, optional defense node coverage check |
|
|
87
|
+
| `between` | How much of the system flows through a specific node |
|
|
88
|
+
| `extract` | Extract a subsystem as standalone EN source |
|
|
89
|
+
| `impact` | What changes if a node is removed, includes propagation |
|
|
90
|
+
| `evolve` | Dry-run a structural change before making it |
|
|
91
|
+
| `compose` | Merge two systems into one by linking shared entities |
|
|
92
|
+
| `conserve` | Structural invariants, deadlock analysis, complexity, resilience |
|
|
93
|
+
| `render` | SVG diagram |
|
|
95
94
|
|
|
96
95
|
## EN Syntax
|
|
97
96
|
|
|
97
|
+
One statement per line:
|
|
98
|
+
|
|
98
99
|
```
|
|
99
|
-
|
|
100
|
-
|
|
101
|
-
|
|
100
|
+
actor do: action needs: input1, input2 yields: output1, output2
|
|
101
|
+
```
|
|
102
|
+
|
|
103
|
+
Shared names between yields and needs create connections automatically:
|
|
104
|
+
|
|
105
|
+
```
|
|
106
|
+
customer do: place order needs: menu yields: order
|
|
107
|
+
kitchen do: prepare food needs: order yields: meal
|
|
108
|
+
waiter do: deliver needs: meal yields: served customer
|
|
102
109
|
```
|
|
103
110
|
|
|
104
111
|
Learn more at [endiagram.com](https://endiagram.com).
|
|
@@ -106,4 +113,3 @@ Learn more at [endiagram.com](https://endiagram.com).
|
|
|
106
113
|
## License
|
|
107
114
|
|
|
108
115
|
MIT
|
|
109
|
-
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@endiagram/mcp",
|
|
3
|
-
"version": "0.
|
|
4
|
-
"description": "MCP server for EN Diagram — structural analysis
|
|
3
|
+
"version": "0.2.0",
|
|
4
|
+
"description": "MCP server for EN Diagram — deterministic structural analysis backed by named theorems",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"bin": {
|
|
@@ -22,8 +22,8 @@
|
|
|
22
22
|
"zod": "^3.23.0"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"
|
|
26
|
-
"
|
|
25
|
+
"@types/node": "^20.0.0",
|
|
26
|
+
"typescript": "^5.9.3"
|
|
27
27
|
},
|
|
28
28
|
"publishConfig": {
|
|
29
29
|
"access": "public"
|