@endiagram/mcp 0.2.34 → 0.2.35

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.
Files changed (2) hide show
  1. package/README.md +7 -13
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -78,19 +78,13 @@ smithery mcp add dushyant30suthar/endiagram
78
78
 
79
79
  | Tool | Description |
80
80
  |------|-------------|
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 |
83
- | `categorize` | Auto-discover subsystem boundaries from dependency structure |
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 |
81
+ | `structure` | Topology, bridges, bottlenecks, parallelism, critical path, dominator tree, subsystems |
82
+ | `invariant` | Conservation laws, deadlock detection, boundedness, structural complexity |
83
+ | `live` | Liveness analysis can resources drain permanently? Can queues overflow? |
84
+ | `reachable` | Path tracing between any two points distance, intermediaries, defense coverage |
85
+ | `equivalent` | Compare two systems or simulate a change — what breaks, what shifts |
86
+ | `compose` | Extract or merge subsystems interface boundaries, shared resources |
87
+ | `render` | SVG diagram of the system |
94
88
 
95
89
  ## EN Syntax
96
90
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@endiagram/mcp",
3
- "version": "0.2.34",
3
+ "version": "0.2.35",
4
4
  "description": "MCP server for EN Diagram — deterministic structural analysis backed by named theorems",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",