Architecture diagram with concurrency capacity and bottleneck estimates from any codebase.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
Scan any project and generate WORKFLOW.html β a dark-mode visual system diagram showing every component, how they talk to each other, and where your throughput ceiling actually is.
Works with Python, Node.js, Go, Java, Rust, Ruby, and mixed projects. No external dependencies for the core scanner.
Vendored and generated directories (node_modules, venv, site-packages, dist, β¦) are never scanned,
and capacity figures are clearly labeled as static-analysis estimates.
Live demo β β generated from fastapi/full-stack-fastapi-template, unmodified.

(real CLI output, unscripted β static screenshot if you'd rather not autoplay)
Every generated page contains:
| Section | What you get |
|---|---|
| Stat row | Workers Β· Concurrent I/O ceiling Β· Semaphore limit Β· Rate limit Β· Practical throughput |
| Architecture diagram | Layered flow: external sources β gateway β API β queues β AI β storage |
| Data flow cards | Write path, read/query path, background jobs β inferred from what's detected |
| Concurrency table | Every layer: model Β· ceiling Β· limiting factor |
| Bottleneck analysis | Ranked CRITICAL β LOW with mitigation notes |
| Codebase dependency graph | Force-directed module/import graph β click a node to isolate its neighbors, hover for file details. Import-direction edges are clearly distinguished from real observed traffic (see below) |
| Guided tour | Spotlight walkthrough of every section, shown automatically the first time a report is opened; replay anytime with the ? button |
Every source file (Python, JS/TS, Go, Java, Rust, Ruby) becomes a node; every real import becomes
an edge β resolved with a language-appropriate parser (Python's ast module, regex for JS/TS/Go/
Java/Rust/Ruby), not guessed. Files that match an already-detected component (an LLM call, a
database client, a queue) get an edge to that component too, so you can see exactly which files
talk to Redis, OpenAI, etc. Large repos (350+ files) are automatically aggregated into
directory-level nodes so the graph stays readable; override with --graph-detail files or
--graph-detail dirs.
By default the graph only shows what the code says (import direction, static "this file calls
Redis"), which is honest but not the same as real traffic. Pass --access-log /path/to/access.log
(any combined/common log format) to overlay real observed request counts onto the HTTP-entry
edges β and the generated report includes a ready-to-run k6 load-test script
covering up to 5 detected routes, so the "Practical throughput" number can be checked against a
real measurement instead of only a static-analysis estimate.
| Category | Examples |
|---|---|
| API frameworks | FastAPI, Flask, Django, Express, Nest.js, Gin |
| Gateways | nginx, Caddy, Traefik (with rate limits + worker_connections) |
| LLM providers | OpenAI, Anthropic Claude, Cohere, AWS Bedrock |
| Vector stores | Qdrant, Pinecone, Weaviate, ChromaDB, pgvector, FAISS, Milvus |
| Databases | PostgreSQL, MySQL, MongoDB, SQLite, Redis |
| Queues | Celery, BullMQ, Kafka, RabbitMQ, RQ, AWS SQS |
| Async primitives | asyncio.Semaphore, run_in_executor, asyncio.gather, asyncio.Lock |
| Workers | --workers N (uvicorn/gunicorn), replicas: (docker-compose), PM2 instances |
| External sources | Jira, Azure DevOps, Slack, GitHub, Stripe, Salesforce, Twilio |
| Evaluation | TruLens, RAGAS, LangSmith |
With pip installed, any MCP host config reduces to:
Then in any Claude Code session:
1. Install the dependency:
2. Add to your MCP host config (replace ~ with your actual home path):
~/Library/Application Support/Claude/claude_desktop_config.json (Mac)
%APPDATA%\Claude\claude_desktop_config.json (Windows)
.vscode/mcp.json
~/.cursor/mcp.json
.zed/settings.json
~/.windsurf/mcp_config.json
3. Restart your tool, then ask:
MCP tools exposed:
generate_workflow β scans project, writes WORKFLOW.html, optionally opens in browseranalyze_workflow β returns structured JSON summary (no file written)No install needed beyond Python 3.8+:
Optional flags:
MIT
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/workflow-generator)<a href="https://allmcps.com/mcp/workflow-generator"><img src="https://allmcps.com/api/badge/workflow-generator?style=directory" alt="Workflow Generator on AllMCPs" /></a>