endiagram by dushyant30suthar
28 score
12 deterministic graph-theory tools for structural analysis. Describe systems in EN syntax (subject do: action needs: inputs yields: outputs) — get topology, bottlenecks, blast radius, critical paths and lot more. No AI inside the computation.
Ranked #1160 out of 1682 indexed tools.Actively maintained with commits in the last week.
Is this your tool? Claim this listing to add maintainer context, get a verified badge, and unlock analytics.
Claim listing → Signal Breakdown
Installs 0
Freshness today
Issue Health 0%
Stars 1
Platform Breadth 1 platform
Contributors 1
Description Detailed
How to Improve
Issue Health high impact
Contributors medium impact
Stars low impact
Supported Platforms
From the README
# @endiagram/mcp
MCP server for [EN Diagram](https://endiagram.com) — structural analysis powered by deterministic graph algorithms.
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.
## Installation
Run directly:
```bash
npx @endiagram/mcp
```
Or install globally:
```bash
npm install -g @endiagram/mcp
```
## Configuration
### Claude Desktop
Add to your `claude_desktop_config.json`:
```json
{
"mcpServers": {
"en-diagram": {
"command": "npx",
"args": ["@endiagram/mcp"]
}
}
}
```
### Claude Code
```bash
claude mcp add en-diagram npx @endiagram/mcp
```
## Environment Variables
| Variable | Default | Description |
|----------|---------|-------------|
| `EN_API_URL` | `https://api.endiagram.com` | API endpoint for the EN Diagram service |
## Tools
| Tool | Description |
|------|-------------|
| `analyze_syste Read full README on GitHub →