EveryDev.ai
Subscribe
Home
Tools

3,215+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2189
  • Coding1574
  • Infrastructure698
  • Marketing534
  • Projects498
  • Research456
  • Design416
  • Analytics389
  • Testing296
  • MCP290
  • Security286
  • Data262
  • Integration197
  • Prompts189
  • Communication183
  • Extensions173
  • Learning170
  • Voice151
  • Commerce135
  • DevOps123
  • Web86
  • Finance26
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
    1. Home
    2. Tools
    3. Graphify
    Graphify icon

    Graphify

    Agent Memory
    Featured

    Open-source CLI skill that maps any codebase into an on-device knowledge graph your AI coding assistant can query instead of grepping through files.

    Visit Website

    At a Glance

    Pricing
    Open Source
    Free tier available

    The full MIT-licensed product running on your machine. No limits, no account, no card.

    Enterprise: Custom/contact

    Engagement

    Available On

    Windows
    macOS
    Linux
    Web
    API

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Agent MemoryAI Coding AssistantsCode Intelligence

    Alternatives

    Entire CLILettaDraft CLI Plugin
    Developer
    Graphify LabsLondon, United KingdomEst. 2026$500000 raised

    Listed Jul 2026

    About Graphify

    Graphify is an open-source (MIT) Python CLI and AI assistant skill that turns any repository into a queryable knowledge graph, entirely on-device. Built by Graphify Labs (YC S26) and led by co-founder Safi Shamsi, it installs in one command and integrates with 17 AI coding assistants including Claude Code, Cursor, GitHub Copilot, Codex, and Gemini CLI. The project reports over 90,000 GitHub stars and 3.2 million PyPI downloads as of July 2026.

    What It Is

    Graphify is a code intelligence tool that replaces file-grepping and fuzzy RAG retrieval with a real, traversable knowledge graph. It parses 36 programming languages using bundled tree-sitter grammars — deterministically, with no LLM call and nothing leaving your machine — and produces three output files: an interactive graph.html, a human-readable GRAPH_REPORT.md, and a machine-readable graph.json. Every relationship in the graph is tagged EXTRACTED (found directly in the AST), INFERRED (resolved by the model), or AMBIGUOUS (evidence points multiple ways), so every answer your assistant gives traces to a real path you can audit.

    How the Graph Differs from RAG

    Traditional RAG pipelines chunk code, embed it, and retrieve fuzzy top-k results by cosine similarity — a process that severs the call graph and forces the model to guess at connections. Graphify builds a typed entity-relationship graph and traverses it hop by hop. The practical difference: instead of stuffing whole files into context, the assistant pulls back only the nodes and edges relevant to a question. The Graphify homepage attributes community-reported results of 71.5× and 79× fewer tokens versus grepping-based approaches, with the 79× figure coming from a MemVerge blog post covering a 496K-token codebase with zero vector database in the stack.

    Core Workflow

    Installation takes about five minutes and runs entirely on-device:

    • Install the package: uv tool install graphifyy (the PyPI package uses a double-y)
    • Register the skill: graphify install — auto-detects Claude Code, Cursor, Copilot, and others
    • Build the graph: /graphify . inside your assistant
    • Query: graphify query "who owns billing?", graphify path "UserService" "DatabasePool", graphify explain "RateLimiter"

    The MCP server (python -m graphify.serve) exposes 10 tools — including query_graph, get_node, get_neighbors, and shortest_path — over stdio or HTTP, so a single shared process can serve the whole team.

    Platform and Language Coverage

    Graphify supports 36 languages parsed on-device via tree-sitter, including Python, TypeScript, JavaScript, Go, Rust, Java, C/C++, C#, Ruby, Kotlin, Swift, PHP, Scala, Dart, Zig, and infrastructure languages like Terraform (HCL). Beyond code, optional extras handle PDFs, Office documents, Google Workspace files, images, and video/audio transcription (via faster-whisper, locally). SQL schemas and live PostgreSQL introspection are also supported. The graph can be exported to Neo4j, FalkorDB, GraphML, SVG, Obsidian vaults, or a markdown wiki.

    Privacy and Deployment Model

    Code parsing runs entirely locally — no telemetry, no account, no API key required for code-only corpora. The graph is a file on disk. Non-code files (docs, PDFs, images) optionally use whichever model backend the user configures: Ollama for fully local inference, or cloud providers (Anthropic, OpenAI, Gemini, DeepSeek, AWS Bedrock, Azure OpenAI) under the user's own keys. The MCP server can be self-hosted over HTTP for team-wide access. An enterprise layer covering merge-gate verification, graph-aware code review, an engineering digest, and a Jira connector is in early access.

    Update: v0.9.19

    The latest release is v0.9.19, published July 18, 2026, with active daily releases (v0.9.16 through v0.9.19 shipped July 14–18). The project was created in April 2026 and has shipped rapidly since, with the GitHub repository showing 90,850 stars and 8,860 forks as of the latest data. The active development branch is v8. The project traces its origin to an Andrej Karpathy post about an LLM-readable "wiki" for codebases, and the community has documented the lineage publicly.

    Graphify - 1

    Community Discussions

    Be the first to start a conversation about Graphify

    Share your experience with Graphify, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    The full MIT-licensed product running on your machine. No limits, no account, no card.

    • MIT-licensed, runs on your machine
    • No limits: graphs, nodes, repos
    • All 17 AI assistant integrations
    • MCP server + CLI + /graphify skill
    • No account, no card

    Enterprise

    Self-hosted enterprise layer for engineering teams. Early access, pricing shaped with design partners.

    Custom
    contact sales
    • Merge-gate verification: catches behavior changes with the failing input
    • Graph-aware code review
    • graphify digest: on-demand engineering report
    • Jira / Atlassian connector
    • All features in early access
    View official pricing

    Capabilities

    Key Features

    • Maps codebase into a queryable knowledge graph using tree-sitter AST parsing
    • Supports 36 programming languages parsed on-device with no LLM call
    • Installs as a skill in 17 AI coding assistants including Claude Code, Cursor, Copilot, Codex, Gemini CLI
    • Every graph edge tagged EXTRACTED, INFERRED, or AMBIGUOUS for full provenance
    • Interactive graph.html visualization with community detection and god-node ranking
    • CLI query commands: graphify query, graphify path, graphify explain
    • MCP server with 10 tools (query_graph, get_node, get_neighbors, shortest_path, etc.) over stdio or HTTP
    • PR dashboard with blast-radius analysis, triage, and merge-conflict risk detection
    • Incremental graph updates via --update flag (re-scans only changed files)
    • Supports PDFs, Office docs, Google Workspace files, images, and video/audio (optional extras)
    • Live PostgreSQL schema introspection
    • Neo4j, FalkorDB, GraphML, SVG, Obsidian vault, and markdown wiki export
    • Git hook integration for auto-rebuild on commit with union-merge driver for graph.json
    • Fully on-device: no telemetry, no account, no API key required for code-only corpora
    • Shared HTTP MCP server for team-wide graph access
    • Community detection via Leiden algorithm with auto-named clusters
    • God node identification: most-connected symbols ranked by dependency count
    • NOTE/WHY/HACK comment extraction as first-class graph nodes
    • Global cross-project graph registry
    • Work memory: save Q&A outcomes and generate LESSONS.md via graphify reflect

    Integrations

    Claude Code
    Cursor
    GitHub Copilot
    OpenAI Codex
    Gemini CLI
    Aider
    Amp
    OpenClaw
    Factory Droid
    Trae
    Kilo Code
    Kiro IDE
    Devin CLI
    Pi coding agent
    Google Antigravity
    Hermes
    Kimi Code
    Ollama
    OpenAI API
    Anthropic API
    Google Gemini API
    AWS Bedrock
    Azure OpenAI
    DeepSeek
    Neo4j
    FalkorDB
    PostgreSQL
    Obsidian
    Jira (enterprise, early access)
    API Available
    View Docs

    Demo Video

    Graphify Demo Video
    Watch on YouTube

    Ratings & Reviews

    No ratings yet

    Be the first to rate Graphify and help others make informed decisions.

    Developer

    Graphify Labs

    Graphify Labs builds the knowledge-graph memory layer for AI coding assistants. Founded by Safi Shamsi and backed by Y Combinator (S26), the team ships Graphify — an open-source, on-device tool that maps codebases into traversable knowledge graphs with full provenance tagging. The core product is MIT-licensed and runs entirely on the user's machine, with no telemetry and no data leaving the device.

    Founded 2026
    London, United Kingdom
    $500000 raised
    10 employees

    Used by

    Rootly AI Labs
    HKUST KnowComp
    Read more about Graphify Labs
    WebsiteGitHubLinkedInX / Twitter
    1 tool in directory

    Similar Tools

    Entire CLI icon

    Entire CLI

    Open-source CLI that hooks into your Git workflow to capture AI agent sessions alongside commits, creating a searchable record of how code was written.

    Letta icon

    Letta

    Letta is an open-source platform for building stateful AI agents with persistent memory that can continuously learn and self-improve over time.

    Draft CLI Plugin icon

    Draft CLI Plugin

    Persistent shared context plugin for Claude Code, Codex CLI, and Cursor that injects your full product context into every AI session automatically.

    Browse all tools

    Related Topics

    Agent Memory

    Memory layers, frameworks, and services that enable AI agents to store, recall, and manage information across sessions. These tools provide persistent, semantic, and contextual memory for agents, supporting personalization, long-term context retention, graph-based relationships, and hybrid RAG + memory workflows.

    100 tools

    AI Coding Assistants

    AI tools that help write, edit, and understand code with intelligent suggestions.

    652 tools

    Code Intelligence

    AI tools that analyze, generate, and transform code through natural language understanding and programming language comprehension.

    85 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions