AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Claude Code Flow Visualizer

mcp-oyekamal-claude-code-flow-visualizer Β· by oyekamal

πŸ” Visualize any Claude Code agent harness β€” CLAUDE.md, subagents, skills, commands, hooks & MCP servers β€” as an interactive flow graph. Import from GitHub, ZIP, or local folder. 100% client-side.

β€” No reviews yet
0 installs
17 views
0.0% view→install

Install

$ agentstack add mcp-oyekamal-claude-code-flow-visualizer

βœ“ scanned Β· βœ“ verified, works with Claude Code, Cursor, and more.

Security review

βœ“ Passed

No issues found. Passed automated security review. Β· v0.1.0 How review works β†’

  • βœ“ Prompt-injection patterns
  • βœ“ Secret / credential exfiltration
  • βœ“ Dangerous shell & filesystem operations
  • βœ“ Untrusted network calls
  • βœ“ Known-malicious package signatures

What it can access

  • βœ“ Network access No
  • βœ“ Filesystem access No
  • βœ“ Shell / process execution No
  • βœ“ Environment & secrets No
  • βœ“ Dynamic code execution No

From automated source analysis of v0.1.0. β€œUsed” means the capability is present in the source β€” more access means more to trust, not that it’s unsafe.

View the full security report β†’

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-oyekamal-claude-code-flow-visualizer)

Reliability & compatibility

βœ“ Security review passed
0 installs to date
β€” no reviews yet
● 29d ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work β†’
Are you the author of Claude Code Flow Visualizer? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Claude Code Flow Visualizer β€” See Your Entire Agent Harness as an Interactive Graph

Visualize any Claude Code configuration (CLAUDE.md, subagents, skills, slash commands, hooks, MCP servers, schedulers) as one interactive flow diagram β€” straight from a GitHub URL, a ZIP, or a local folder. No install for your target repo, no backend, 100% client-side.

Why

Claude Code agent setups live as scattered markdown files: CLAUDE.md, .claude/agents/*.md, .claude/skills/*/SKILL.md, commands, settings.json hooks, and .mcp.json connectors. To understand how an existing harness works β€” which agent delegates to which, what skills fire when, where Notion/database/MCP connections plug in β€” you'd normally have to open and read every single file.

This tool parses the whole project and renders it as a wired graph in seconds:

  • πŸ€– Agents with model + tool badges, delegation edges traced from prompt bodies
  • πŸ“š Skills attached to the agents and commands that actually reference them
  • ⌨️ Slash commands, πŸͺ lifecycle hooks, ⏰ schedulers (GitHub Actions / cron)
  • πŸ”Œ MCP connectors and πŸ—„οΈ memory / state stores drawn as distinct node types
  • 🚨 Pipeline lints: broken delegation references, duplicate agent names, circular delegation, orphan skills, reviewers with write access, orchestrators missing the Task tool, vague trigger descriptions

Quick Start

git clone https://github.com/oyekamal/claude-code-flow-visualizer.git
cd claude-code-flow-visualizer
npm install
npm run dev        # β†’ http://localhost:5173

Then either:

  1. Paste a GitHub repo (owner/repo, full URL, or a /tree/branch/subfolder link) and hit VISUALIZE
  2. Upload a ZIP (GitHub β†’ Code β†’ Download ZIP) β€” fully offline
  3. Upload a folder β€” point it at any local clone
  4. Or click LOAD DEMO HARNESS to explore a sample multi-agent content pipeline

Features

Interactive canvas

Pan, zoom, and drag nodes. Hover or select any node to highlight its wiring. Edge styles encode meaning: solid = delegation, dashed = skill use, dotted = MCP connection, dash-dot = state reads/writes, animated = scheduled loop.

Node inspector with raw source

Click any agent, skill, command, hook, or connector to see its description trigger, model, tools, incoming/outgoing references β€” and the underlying markdown file, side by side.

Pipeline lints ("don't break my harness")

The validator catches the ways multi-agent pipelines actually break:

| Check | Level | |---|---| | Delegation to an agent/skill that doesn't exist | error | | Orchestrator delegates but lacks the Task tool | error | | Duplicate agent names (later file shadows earlier) | warn | | Circular delegation loops | warn | | Reviewer/validator agents holding write tools | warn | | Skills never referenced by anything (dead weight) | warn | | Missing or vague descriptions (agents never auto-trigger) | warn/info | | MCP servers configured but never used | info |

Three import transports

  1. GitHub API + raw.githubusercontent (supports private repos via token)
  2. jsDelivr mirror β€” no rate limits for public repos
  3. Claude API relay β€” works even inside sandboxed previews where only api.anthropic.com is reachable

Unparseable content is never dropped β€” it's counted and preserved verbatim.

How it works

files β†’ parser β†’ project model β†’ graph builder β†’ layered layout β†’ SVG canvas. A single React component (~1,700 lines, no graph library): minimal YAML-frontmatter parser, path classifier for the .claude contract, reference extraction from prompt bodies (backticked names, @mentions, delegation verbs), BFS-layered layout with barycenter ordering, and a lint pass over the resulting graph.

Testing

End-to-end tested with Playwright (test_e2e.py): empty state, demo graph, inspector, lint panel, live GitHub import, ZIP import.

python3 -m venv .venv && .venv/bin/pip install playwright && .venv/bin/playwright install chromium
npm run dev &
.venv/bin/python test_e2e.py

Roadmap

  • Canvas β†’ files: edit nodes in the UI and regenerate valid markdown (two-way sync)
  • Impact analysis + diff preview before writing changes back
  • Pre-built agent/skill library and flow templates (orchestratorβ†’workers, builder+validator, scheduled loop with memory)

Keywords

Claude Code visualizer Β· CLAUDE.md viewer Β· Claude subagents graph Β· .claude directory explorer Β· AI agent orchestration diagram Β· multi-agent pipeline visualization Β· MCP server map Β· agent harness debugging Β· Anthropic Claude agents

License

MIT Β© oyekamal

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source β€” we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.