MCP.so
登录

DependencyMCP Server

@mkearl

关于 DependencyMCP Server

A Model Context Protocol (MCP) server for analyzing code dependencies

基本信息

分类

其他

运行时

node

传输方式

stdio

发布者

mkearl

配置

暂无标准配置

该服务器的 README 中没有可解析的 MCP 配置块,请前往代码仓库查看安装说明。

代码仓库

工具

未检测到工具

工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。

概览

What is DependencyMCP Server?

A Model Context Protocol (MCP) server that analyzes codebases to generate dependency graphs and architectural insights. It supports multiple programming languages and helps developers understand code structure, dependencies, and architectural patterns.

How to use DependencyMCP Server?

Install by cloning the repository, running npm install and npm run build. Configure by adding the server to your MCP settings file with the command node and the path to the compiled index.js. Optionally set environment variables MAX_LINES_TO_READ, CACHE_DIR, and CACHE_TTL. Use the available tools (analyze_dependencies, get_dependency_graph, get_file_metadata, get_architectural_score) by calling them from an MCP client.

Key features of DependencyMCP Server

  • Multi-language support: TypeScript, JavaScript, C#, Python, and more
  • Dependency graph generation in JSON or DOT format
  • Architectural layer inference and validation against rules
  • Extracts imports, exports, and other file metadata
  • Scores codebase compliance with architectural patterns

Use cases of DependencyMCP Server

  • Analyze dependencies in a project to understand its structure
  • Generate dependency graphs for documentation or refactoring
  • Inspect detailed metadata (imports, exports) of specific files
  • Score a codebase against custom architectural rules

FAQ from DependencyMCP Server

What programming languages are supported?

TypeScript, JavaScript, C#, Python, and more can be analyzed. Support for additional languages can be added by extending file types and regex patterns.

How do I configure caching?

Set CACHE_DIR (default .dependency-cache) and CACHE_TTL (default 1 hour) environment variables. MAX_LINES_TO_READ controls how many lines per file are processed.

What output formats are available for dependency graphs?

Dependency graphs can be returned in JSON or DOT format, selected via the format parameter.

How is the architectural score calculated?

The score starts at 100 and deducts 5 points for each violation of the defined architectural rules.

How can I add support for a new language?

Add file extensions to fileTypes, implement language-specific regex patterns in parseFileImports and parseFileExports, and add architectural patterns to inferArchitecturalLayer.

评论

其他 分类下的更多 MCP 服务器