Install
$ agentstack add mcp-elbruno-graphify-dotnet ✓ scanned · ✓ verified — works with Claude Code, Cursor, and more.
Security review
✓ PassedNo 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.
About
graphify-dotnet
[](https://github.com/elbruno/graphify-dotnet/actions/workflows/build.yml) [](https://github.com/elbruno/graphify-dotnet/actions/workflows/publish.yml) [](https://opensource.org/licenses/MIT) [](https://github.com/elbruno/graphify-dotnet/stargazers)
🔍 Build AI-powered knowledge graphs from any codebase. Understand structure you didn't know was there.
> 💡 Origin story — This project traces back to Andrej Karpathy's tweet on using LLMs to build personal knowledge bases: ingesting raw sources, compiling them into structured Markdown wikis, and navigating knowledge through graph views instead of keyword search. That idea inspired graphify by @safishamsi, which was then showcased by @socialwithaayan — and that's what kicked off this .NET port.
graphify-dotnet reads your files (code, docs, images), extracts concepts and relationships through AST parsing and AI semantic analysis, builds a knowledge graph with community detection, and exports interactive visualizations. Navigate codebases by structure instead of keyword search.
Quick Start
1. Install
dotnet tool install -g graphify-dotnet
2. Configure
graphify config
This launches an interactive wizard with three options:
- 📋 View current configuration — see what's set
- 🔧 Set up AI provider — pick Azure OpenAI, Ollama, Copilot SDK, or None (AST-only)
- 📂 Set folder to analyze — set your default project folder and export formats
Pick your AI provider (or skip it — AST-only extraction works with zero config), then set the folder to analyze.
3. Run
graphify run
That's it. Open graphify-out/graph.html in your browser to explore the interactive graph.
> 📖 New here? See the [Getting Started](docs/getting-started.md) guide for a step-by-step walkthrough.
Supported Languages
graphify detects and extracts structure from these file types:
| Category | Languages | |----------|-----------| | Code | C#, Python, TypeScript, JavaScript, Go, Rust, Java, C, C++, Ruby, Kotlin, Scala, PHP, Swift, R, Lua, Shell, PowerShell | | Config | YAML, JSON, TOML, XML | | Docs | Markdown, Plain Text, reStructuredText, AsciiDoc | | Media | PDF, PNG, JPEG, WebP, GIF, SVG |
No AI provider? No problem. AST-only extraction works with zero config and produces structural graphs from code — classes, functions, imports, and their relationships. AI providers add semantic extraction (conceptual connections, inferred relationships) but are completely optional.
Build from Source
git clone https://github.com/elbruno/graphify-dotnet.git
cd graphify-dotnet
dotnet build graphify-dotnet.slnx
dotnet run --project src/Graphify.Cli -- run .
NuGet Packages
| Package | Purpose | Version | Downloads | |---------|---------|---------|-----------| | graphify-dotnet | .NET global tool (graphify) | [](https://www.nuget.org/packages/graphify-dotnet) | [](https://www.nuget.org/packages/graphify-dotnet) | | graphify-dotnet-core | Core graph extraction and pipeline library | [](https://www.nuget.org/packages/graphify-dotnet-core) | [](https://www.nuget.org/packages/graphify-dotnet-core) | | graphify-dotnet-sdk | Copilot/AI SDK integration library | [](https://www.nuget.org/packages/graphify-dotnet-sdk) | [](https://www.nuget.org/packages/graphify-dotnet-sdk) |
Documentation
| Topic | Link | |-------|------| | Getting Started | [docs/getting-started.md](docs/getting-started.md) | | Architecture | [ARCHITECTURE.md](ARCHITECTURE.md) | | Configuration | [docs/configuration.md](docs/configuration.md) | | CLI Reference | [docs/cli-reference.md](docs/cli-reference.md) | | Worked Example | [docs/worked-example.md](docs/worked-example.md) | | Troubleshooting | [docs/troubleshooting.md](docs/troubleshooting.md) | | | | | AI Providers | | |   Azure OpenAI | [docs/setup-azure-openai.md](docs/setup-azure-openai.md) | |   Ollama | [docs/setup-ollama.md](docs/setup-ollama.md) | |   Copilot SDK | [docs/setup-copilot-sdk.md](docs/setup-copilot-sdk.md) | | | | | Export Formats | [docs/export-formats.md](docs/export-formats.md) | |   HTML Interactive | [docs/format-html.md](docs/format-html.md) | |   JSON | [docs/format-json.md](docs/format-json.md) | |   SVG | [docs/format-svg.md](docs/format-svg.md) | |   Neo4j Cypher | [docs/format-neo4j.md](docs/format-neo4j.md) | |   Ladybug | [docs/format-ladybug.md](docs/format-ladybug.md) | |   Obsidian Vault | [docs/format-obsidian.md](docs/format-obsidian.md) | |   Wiki | [docs/format-wiki.md](docs/format-wiki.md) | |   Report | [docs/format-report.md](docs/format-report.md) | | | | | Other | | |   Watch Mode | [docs/watch-mode.md](docs/watch-mode.md) | |   Global Tool Install | [docs/dotnet-tool-install.md](docs/dotnet-tool-install.md) |
License
This project is licensed under the MIT License. See [LICENSE](LICENSE) file for details.
👋 About the Author
Made with ❤️ by Bruno Capuano (ElBruno)
- 📝 Blog: elbruno.com
- 📺 YouTube: youtube.com/elbruno
- 🔗 LinkedIn: linkedin.com/in/elbruno
- 𝕏 Twitter: twitter.com/elbruno
- 🎙️ Podcast: notienenombre.com
Acknowledgments
- Andrej Karpathy's tweet on LLM-powered personal knowledge bases — the original idea that started the chain.
- This tweet by @socialwithaayan showcasing graphify by @safishamsi — which directly inspired this .NET port.
This project is a .NET 10 port of safishamsi/graphify, reimagined with C# idioms, .NET 10 features, and the Microsoft.Extensions.AI abstraction layer.
Source & license
This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.
- Author: elbruno
- Source: elbruno/graphify-dotnet
- License: MIT
Install and usage instructions live in the source repository linked above.
Reviews
No reviews yet — be the first.
Write a review
Versions
- v0.1.0 Imported from the upstream source.