io.github.dushyant30suthar/endiagram-mcp
NPM · @ENDIAGRAM/MCP · 2 COMPONENTS · SCANNED AUG 3
EN Diagram — structural verification for concurrent systems. Pure math, no AI.
Available components
How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. How we score →
Supply Chain Security87
- No malware found by supply-chain analysis.Pass
- Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree.Partial
- No install/post-install scripts declared.Pass
- Only part of the dependency tree could be resolved (95 of 99), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
- Source repository is publicly reachable at the declared URL. View diagnostics → Pass
- Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
- Clear OSI-approved license (MIT).Pass
- Actively maintained (last published 103 days ago).Pass
- Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
Schema Quality & AI Usability47
- AI-judged instruction clarity (good).Pass
- Context-footprint check failed: tool/resource definitions use about 2269 tokens (~324/item across 7 items; 7 tools + 0 resources), over budget; trim descriptions and params. See how to fix → Fail
- Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management27
- Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage100
- 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
- 100% of tool parameters carry a description.Pass
Capabilities100
- Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.
npm · @endiagram/mcp
claude mcp add dushyant30suthar-endiagram-mcp -- npx -y @endiagram/mcp
codex mcp add dushyant30suthar-endiagram-mcp -- npx -y @endiagram/mcp
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"dushyant30suthar-endiagram-mcp": {
"type": "local",
"command": [
"npx",
"-y",
"@endiagram/mcp"
],
"enabled": true
}
}
} openclaw mcp add dushyant30suthar-endiagram-mcp --command npx --arg -y --arg @endiagram/mcp
mcp_servers:
dushyant30suthar-endiagram-mcp:
command: "npx"
args: ["-y", "@endiagram/mcp"] {
"mcpServers": {
"dushyant30suthar-endiagram-mcp": {
"command": "npx",
"args": [
"-y",
"@endiagram/mcp"
]
}
}
} Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.
- 3 Aug 26 +1
No change was recorded against any check on this day. Stability & Change Management went from 23 to 27. That category is still filling its 30-day observation window: 7 days of observed history at the previous scan, 8 at this one. The score rises as the window fills, whether or not the server changes.
- 2 Aug 26 +46
- Provenance: unverified → fail ▼ security
- Install scripts: unverified → pass ▲ security
- Known CVEs: unverified → partial ▲ security
- Malware scan: unverified → pass ▲ security
- Tool coverage: 100 → unverified ▼ functional
- Security disclosure: fail → unverified ▼ functional
- Maintenance: unverified → pass ▲ functional
- MCP protocol: unverified → pass ▲ functional
- Stability: unverified → 0.23 ▲ functional
- Schema quality: unverified → good ▲ functional
- License: unverified → pass ▲ functional
- Dependency health: unverified → partial ▲ functional
- First check of Schema quality: unverified functional
- Licence: MIT functional
- 31 Jul 26 −7
- We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
- 30 Jul 26 −18
- Malware scan: pass → unverified ▼ security
- 28 Jul 26 0
- Security disclosure: unverified → fail ▼ functional
- 27 Jul 26 42
First indexed and scored.
Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.
Captured 3 Aug 2026 · Analysed npm/@endiagram/[email protected]
Provenance none
Ecosystem: npm · Outcome: none
Dependencies 95 packages
95 packages in the resolved dependency tree · 95 deprecated · 29 stale.
The dependency tree was only partially resolved, so these counts may be incomplete.
The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.
compose ~265
How do parts combine, or how does a part stand alone? Merge mode (source_a + source_b + links): declare which entities in A are the same as entities in B; the combined graph is wired via string-equality of shared names. Extract mode (source + subsystem): pull a named subsystem out as standalone EN with boundary inputs/outputs, actors, and locations. Valid subsystem names come from structure's `subsystems` field — call structure on the source first to discover them. See the server instructions for EN language syntax.
| Name | Type | Req | Description |
|---|---|---|---|
| links | string | — | Entity identifications, one per line. Format: `a.<entity name>=b.<entity name>` (A's entity is the same as B's entity). `#` starts a comment. Example: `a.user session=b.authenticated session`. |
| source | string | — | EN source code for extract mode |
| source_a | string | — | EN source code or path to .en/.txt file for the first system |
| source_b | string | — | EN source code or path to .en/.txt file for the second system |
| subsystem | string | — | Subsystem name to extract. Valid names come from structure's `subsystems` field — call structure on the source first to discover them. |
No output schema declared.
No examples provided.
equivalent ~282
Are two systems the same, or what changes if I change this one? Compare mode (source_a + source_b): structural differences, edit distance, spectral equivalence. isCospectral=true means identical graph structure up to relabeling — topologically the same despite different names, actors, or locations. Evolve mode (source + patch): dry-run a change, shows diff plus new/lost bridge nodes. Patch has three directive types — plain EN statement adds an action; a line starting with `-` (and not containing `do:`) removes the named action; a statement whose action name matches an existing one replaces the original. See the server instructions for EN language syntax.
| Name | Type | Req | Description |
|---|---|---|---|
| patch | string | — | EN patch for evolve mode. Three directive types: plain EN statement (`actor do: X needs: Y yields: Z at: W`) adds action X; a line starting with `-` (and not containing `do:`) removes the named actio… |
| source | string | — | EN source code for evolve mode |
| source_a | string | — | EN source code or path to .en/.txt file for the first system |
| source_b | string | — | EN source code or path to .en/.txt file for the second system |
No output schema declared.
No examples provided.
invariant ~320
What's always true — automatic findings and on-demand checks. Automatic outputs: conservationLaws (weighted entity sums constant across executions), sustainableCycles (T-invariants — action sequences returning to start state), depletableSets (entity groups whose simultaneous depletion is irreversible), behavioral.deficiency (0 means structure fully determines dynamics), behavioral.isReversible, behavioral.hasUniqueEquilibrium. On-demand via `rules`: encode domain-specific claims and verify them against the graph — this is how to check things the topology alone can't see (precedence, coverage, centrality bounds, resilience). See the rules parameter for supported sentence shapes.
| Name | Type | Req | Description |
|---|---|---|---|
| rules | string | — | Custom structural rules, one per line. Four supported sentence shapes (regex-matched): (1) `no bridge that is also hub` — flags nodes that are both a bridge and a hub. (2) `every path from X to Y pas… |
| source | string | yes | EN source code, or path to .en/.txt file |
No output schema declared.
No examples provided.
live ~107
Can it deadlock? Can entities overflow? isStructurallyLive means every siphon contains a trap — no structural deadlock possible. uncoveredSiphons are entity groups that can drain permanently, with the actors and locations affected. isStructurallyBounded means no entity can accumulate without limit. unboundedCycles are action sequences that could cause overflow. See the server instructions for EN language syntax.
| Name | Type | Req | Description |
|---|---|---|---|
| source | string | yes | EN source code, or path to .en/.txt file |
No output schema declared.
No examples provided.
reachable ~135
Can X reach Y? Follows directed data flow first; falls back to undirected. `from` and `to` accept entity names or action names (resolved against the program). Path shows each step with actor and location. locationCrossings counts boundary transitions. defense_nodes checks if guards cover all paths; coverage.fullCoverage=false means unguarded routes exist. See the server instructions for EN language syntax.
| Name | Type | Req | Description |
|---|---|---|---|
| defense_nodes | string | — | Comma-separated guard nodes to check coverage |
| from | string | yes | Starting node name |
| source | string | yes | EN source code |
| to | string | yes | Target node name |
No output schema declared.
No examples provided.
render ~432
SVG or PNG diagram. Only call when user explicitly asks to visualize. The rendered image is delivered to the user, not injected into the model's context. See the server instructions for EN language syntax.
| Name | Type | Req | Description |
|---|---|---|---|
| color | string | — | Seed color hex (#RRGGBB) to generate a custom theme. Overrides theme parameter. One color generates the entire palette. |
| direction | string | — | Layout direction: LR (left-to-right) or TB (top-to-bottom). Default auto-detects from condensation DAG aspect ratio. |
| isDark | string | — | true or false. Selects the dark or light variant of a named preset. If omitted, defaults to dark unless theme=light. |
| output | string | — | File path to save the rendered image |
| quality | string | — | Output quality: small, mid, or max |
| source | string | yes | EN source code, or path to .en/.txt file |
| structure_layers | string | — | Bitmask for structure overlays. Bits: 1=subsystems, 2=pipelines, 4=cycles, 8=forks, 16=joins, 32=hubs, 64=deadlock, 128=overflow. Default 255 (all on). Pass 0 to hide all. |
| theme | string | — | Color theme. Curated presets (each with light + dark variants; pair with `isDark`): `Editorial` (stone paper + rust focal, adapted from cathrynlavery/diagram-design), `Primer` (GitHub design system —… |
| type | string | — | Output format: png (default) or svg. PNG is rasterized server-side via Batik. |
| view | string | — | Group by: actors (partition by actor) or locations (partition by location). Default auto-detects topology. |
No output schema declared.
No examples provided.
structure ~266
What is this system? Returns shape (Pipeline, Fork-Join, DAG, Star, Cycle, Tree, Complete, etc.), stages with roles, bridge nodes, cycles, parallelism, critical path, dominator tree, min-cuts, subsystems, interface nodes, actors (who does what, workload entropy), locations (where work happens, boundary crossings). Levers: node=X returns per-node centrality (betweenness, closeness, eigenvector) for a specific node. detect_findings=true flags named structural risks — unguarded-sink (sinks reachable via only pipeline actions, no JOIN/HUB gating), single-cut-path (source-sink pairs with only one vertex-disjoint path), multi-cut-path (paths with redundant defense, min-cut > 1). See server instructions for EN language syntax.
| Name | Type | Req | Description |
|---|---|---|---|
| detect_findings | string | — | Set to 'true' to flag named structural findings. Possible values: unguarded-sink, single-cut-path, multi-cut-path. |
| node | string | — | Node name. When provided, returns per-node centrality (betweenness, closeness, eigenvector) for this specific node instead of the overview. |
| source | string | yes | EN source code, or path to .en/.txt file |
No output schema declared.
No examples provided.