dependency-health-mcp
Monitors and analyzes dependency health in Node.js projects, providing tools to check outdated packages, vulnerabilities, licenses, and suggest safe upgrades.
README
Dependency Health Monitor MCP Server
A Model Context Protocol (MCP) server that monitors and analyzes dependency health across your Node.js projects. This server provides intelligent tools to check for outdated packages, security vulnerabilities, license compliance, and suggests safe upgrade paths.
Important: Each MCP server instance is configured to monitor a specific project. The project path is specified when starting the server, and all tools operate only on that configured project for security and clarity.
Features
- š Check Outdated Packages - Find packages with newer versions available
- š”ļø Security Audit - Identify vulnerabilities in your dependencies
- š Dependency Analysis - Get statistics about your dependency tree
- āļø License Compliance - Check for restrictive licenses that may require attention
- š” Smart Update Suggestions - Get prioritized recommendations for safe updates
- š Automated Upgrades - Safely upgrade dependencies with fine-grained control
Prerequisites
- Node.js >= 18.0.0
- npm, yarn, or pnpm package manager
- A project with package.json
Installation
Option 1: Local Development/Testing
Clone this repository and install dependencies:
git clone https://github.com/pramodyadav/dependency-health-mcp.git
cd dependency-health-mcp
npm install
Option 2: Install from npm
Since this library is already published to npm, you can install globally:
npm install -g @pramodyadav027/dependency-health-mcp
Configuration
Each MCP server instance monitors one specific project. You specify the project path when configuring the server.
For Local Development (Claude Desktop)
Add to your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json
{
"mcpServers": {
"dependency-health-myproject": {
"command": "node",
"args": [
"/absolute/path/to/dependency-health-mcp/index.js",
"/path/to/your/project"
]
}
}
}
To monitor multiple projects, add separate server entries:
{
"mcpServers": {
"dependency-health-project1": {
"command": "node",
"args": [
"/absolute/path/to/dependency-health-mcp/index.js",
"/path/to/project1"
]
},
"dependency-health-project2": {
"command": "node",
"args": [
"/absolute/path/to/dependency-health-mcp/index.js",
"/path/to/project2"
]
}
}
}
For npm Package (After Publishing)
{
"mcpServers": {
"dependency-health": {
"command": "npx",
"args": [
"@pramodyadav027/dependency-health-mcp",
"/path/to/your/project"
]
}
}
}
Or if installed globally:
{
"mcpServers": {
"dependency-health": {
"command": "dependency-health-mcp",
"args": [
"/path/to/your/project"
]
}
}
}
Available Tools
All tools operate on the project configured when the server was started.
1. check_outdated_packages
Check for outdated packages and get version comparison.
Parameters:
packageManager(optional): npm, yarn, or pnpm (default: npm)
2. check_vulnerabilities
Scan for security vulnerabilities using npm/yarn/pnpm audit.
Parameters:
packageManager(optional): npm, yarn, or pnpm (default: npm)
3. analyze_dependencies
Get detailed statistics about your dependency tree.
Parameters: None
4. check_license_compliance
Identify packages with restrictive licenses (GPL, AGPL, etc.).
Parameters: None
5. suggest_updates
Get prioritized update recommendations based on semantic versioning.
Parameters: None
6. upgrade_dependencies
Automatically upgrade dependencies with fine-grained control.
Parameters:
packageManager(optional): npm, yarn, or pnpm (default: npm)packages(optional): Array of specific packages to upgradeupdateType(optional): patch, minor, major, or latest (default: latest)
Usage Examples
Once configured with an MCP client (like Claude Desktop or VS Code Copilot), you can ask:
- "Check for outdated packages in this project"
- "Are there any security vulnerabilities?"
- "Analyze my project dependencies"
- "Check license compliance"
- "Suggest safe updates for my dependencies"
- "Upgrade all patch versions"
- "Upgrade only the react package"
The tools will automatically operate on the project you configured for this server instance.
Development
Architecture
The codebase is organized into modular components for better maintainability:
- index.js - Clean entry point (10 lines)
- server.js - Server orchestration and MCP protocol handling
- tools/ - Individual tool implementations (~80 lines each)
- utils/ - Shared utilities for validation and package manager abstraction
This modular structure makes it easy to:
- Add new tools
- Test individual components
- Understand the codebase
- Maintain and update existing functionality
Running Locally
# Start the server for a specific project
node index.js /path/to/your/project
# Or use npm scripts (operates on current directory)
npm start
# Development mode with auto-reload
npm run dev
Testing
You can test the server by configuring it in Claude Desktop or VS Code and asking questions about the configured Node.js project.
Publishing to npm (For Maintainers)
# Build/test first
npm install
npm start # Verify it works
# Login to npm
npm login
# Publish
npm publish --access public
Project Structure
dependency-health-mcp/
āāā index.js # Entry point
āāā server.js # MCP server orchestration
āāā cli.js # CLI entry point (for bin)
āāā tools/ # Tool implementations
ā āāā outdated.js # Check outdated packages
ā āāā vulnerabilities.js # Security audit
ā āāā analyze.js # Dependency analysis
ā āāā licenses.js # License compliance
ā āāā suggest.js # Update suggestions
ā āāā upgrade.js # Automated upgrades
āāā utils/ # Shared utilities
ā āāā validation.js # Input validation
ā āāā package-manager.js # Package manager abstraction
āāā package.json # Package configuration
āāā README.md # This file
āāā CHANGELOG.md # Version history
āāā QUICKSTART.md # Quick start guide
āāā LICENSE # MIT License
āāā example-config.json # Configuration examples
āāā .gitignore # Git ignore rules
āāā .npmignore # npm ignore rules
Security
This server only operates on the specific project path configured at startup. Tools cannot access or modify files outside the configured project directory. For enhanced security:
- Use absolute paths in your MCP configuration
- Create separate server instances for each project you want to monitor
- Review the configured project path before running any upgrade operations
License
MIT
Author
Pramod Kumar Yadav
Contributing
Contributions are welcome! Please feel free to submit a Pull Request.
Support
For issues, questions, or contributions, please visit the GitHub repository.
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.