FileScopeMCPMCP Server27/100 via “multi-language dependency graph construction with bidirectional tracking”
** - Analyzes your codebase identifying important files based on dependency relationships. Generates diagrams and importance scores per file, helping AI assistants understand the codebase. Automatically parses popular programming languages, Python, Lua, C, C++, Rust, Zig.
Unique: Implements language-agnostic dependency parsing via configurable regex patterns per language (IMPORT_PATTERNS in file-utils.ts) rather than AST parsing, enabling lightweight analysis across 6+ languages without heavy parser dependencies. Tracks bidirectional relationships (both 'depends on' and 'is depended by') in a single pass.
vs others: Faster than AST-based tools like Understand or Lattix for initial codebase scans due to regex simplicity, but less accurate for complex import patterns; better suited for AI context generation than enterprise dependency analyzers