endiagram
The endiagram server performs deterministic, graph-theoretic structural analysis of systems modeled in EN (Entity-Node) syntax — no AI inside the computation.
analyze_system— Compute structural facts (shape, stages, bridges, cycles, actors, locations); optionally check invariants and detect antipatterns (unguarded-sinks, single/multi-cut-paths), liveness, boundedness, siphons, and traps.render— Generate publication-quality SVG diagrams with configurable light/dark themes.detail— Deep structural analysis: concurrency, flow landmarks, resilience metrics, dominator trees, and min-cuts.distance— Find the shortest path between two nodes, annotated with subsystem crossings.trace— Follow directed flow from node A to node B with role/subsystem annotations and optional defense-node highlighting.diff— Structurally compare two systems, identifying topology, role, and subsystem changes.extract— Extract a named subsystem as standalone EN source code.impact— Blast-radius analysis: remove a node and see what disconnects.evolve— Dry-run architectural changes by applying a patch and viewing the structural delta.between— Compute betweenness centrality for a specific node (fraction of shortest paths through it).categorize— Auto-discover subsystem boundaries from the dependency structure.compose— Merge two EN graphs into one with explicit entity linking.
Allows rendering complex system dependency graphs and structural analysis results into publication-quality SVG images.
@endiagram/mcp
MCP server for EN Diagram — deterministic structural analysis powered by graph theory. Every result is backed by a named mathematical theorem. No AI inside the computation.
Installation
Run directly:
npx @endiagram/mcpOr install globally:
npm install -g @endiagram/mcpConnect
Claude Code
claude mcp add endiagram npx @endiagram/mcpClaude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"endiagram": {
"command": "npx",
"args": ["@endiagram/mcp"]
}
}
}Cursor
Add to .cursor/mcp.json in your project root:
{
"mcpServers": {
"endiagram": {
"command": "npx",
"args": ["@endiagram/mcp"]
}
}
}HTTP (zero install)
Any MCP client that supports HTTP transport:
https://api.endiagram.com/mcpSmithery
smithery mcp add dushyant30suthar/endiagramEnvironment Variables
Variable | Default | Description |
|
| API endpoint for the EN Diagram service |
Tools
Six questions about any system, plus a render tool. Every tool takes source (EN code or .en/.txt file path). Tool names are shorthand, not specs — read each description before calling; compose and equivalent are mode-based, not general analyzers.
Tool | What it answers | Levers |
| What is this system? Shape, stages, bridges, cycles, critical path, dominator tree, min-cuts, subsystems, actors, locations. |
|
| What's always true? Conservation laws, T-invariants (sustainable cycles), depletable sets, deficiency, reversibility. |
|
| Can it deadlock? Can entities overflow? Siphons, traps, unbounded cycles, structural liveness and boundedness. | — |
| Can X reach Y? Path, distance, boundary crossings. |
|
| Are two systems the same, or what changes if I change this one? | Compare mode ( |
| How do parts combine (merge) or how does a part stand alone (extract)? | Merge: |
| SVG or PNG diagram. Only call when the user asks to visualize. | Themes: |
EN Syntax
One statement per line:
actor do: action needs: input1, input2 yields: output1, output2Shared names between yields and needs create connections automatically:
customer do: place order needs: menu yields: order
kitchen do: prepare food needs: order yields: meal
waiter do: deliver needs: meal yields: served customerModeling
Same name = same thing. Put all required inputs in one needs: list (AND). Give two actions the same yield-name to offer alternatives (OR). Sequence = one action consuming another's yield. Re-yield stateful resources to keep them persistent; one-shot data stays consumed. Model at the real atomic granularity — split only when the pieces could be accessed independently.
Learn more at endiagram.com.
Telemetry
@endiagram/mcp generates a random install ID on first run, stored at
~/.endiagram/install-id (mode 0600). It is sent with every request as
the X-Endiagram-Install-Id HTTP header so we can correlate requests
from the same install for debugging issues that the per-IP signal alone
cannot track (mobile networks, VPNs, CGNAT all collapse or churn IPs).
No source code, no file paths, no environment variables, and no PII are sent. The install ID is a random opaque UUIDv4 generated locally.
A first-run notice prints to stderr (never stdout — stdout is the MCP JSON-RPC channel) with the disclosure and the opt-out instructions. The notice fires once per install and never again.
Opting out
Any of these three methods disables the install ID:
Set
ENDIAGRAM_TELEMETRY=offas an environment variable (also accepts0,false,no).Create a file at
~/.endiagram/telemetrycontaining the wordoff.Delete
~/.endiagram/install-id. (A new one is generated on next run unless option 1 or 2 is also set.)
When any of these is active, the X-Endiagram-Install-Id header is not
sent at all — the server falls back to its per-IP HMAC cid for
correlation, which works fine for short-term per-session tracing.
Full privacy policy: endiagram.com/privacy
License
MIT
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/dushyant30suthar/endiagram-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server