npm sentinel mcp
A Model Context Protocol server that enables AI-powered analysis of NPM packages through multiple tools for security vulnerability scanning, dependency analysis, package comparison, and quality assessment.
A Model Context Protocol server that enables AI-powered analysis of NPM packages through multiple tools for security vulnerability scanning, dependency analysis, package comparison, and quality assessment.
A powerful Model Context Protocol (MCP) server that revolutionizes NPM package analysis through AI. Built to integrate with Claude and Anthropic AI, it provides real-time intelligence on package security, dependencies, and performance. This MCP server delivers instant insights and smart analysis to safeguard and optimize your npm ecosystem, making package management decisions faster and safer for modern development workflows.
Note: The server provides AI-assisted analysis through MCP integration.
npm://registry
: NPM Registry interfacenpm://security
: Security analysis interfacenpm://metrics
: Package metrics interfacepackages
(string[])packages
(string[])packages
(string[])packages
(string[])packages
(string[])packages
(string[])packages
(string[])period
("last-week" | "last-month" | "last-year")packages
(string[])packages
(string[])packages
(string[])packages
(string[])query
(string)limit
(number, optional)packages
(string[])packages
(string[])packages
(string[])packages
(string[])packages
(string[])packages
(string[])packages
(string[])# Build the Docker image
docker build -t nekzus/npm-sentinel-mcp .
You can run the MCP server using Docker with directory mounting to /projects
:
{
"mcpServers": {
"npm-sentinel-mcp": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-w", "/projects",
"--mount", "type=bind,src=${PWD},dst=/projects",
"nekzus/npm-sentinel-mcp",
"node",
"dist/index.js"
]
}
}
}
For multiple directories:
{
"mcpServers": {
"npm-sentinel-mcp": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"-w", "/projects",
"--mount", "type=bind,src=/path/to/workspace,dst=/projects/workspace",
"--mount", "type=bind,src=/path/to/other/dir,dst=/projects/other/dir,ro",
"nekzus/npm-sentinel-mcp",
"node",
"dist/index.js"
]
}
}
}
Note: All mounted directories must be under /projects
for proper access.
Add this to your claude_desktop_config.json
:
{
"mcpServers": {
"npmAnalyzer": {
"transport": "stdio",
"command": "npx",
"args": ["-y", "@nekzus/mcp-server"]
}
}
}
Configuration file locations:
- Windows: %APPDATA%/claude-desktop/claude_desktop_config.json
- macOS: ~/Library/Application Support/claude-desktop/claude_desktop_config.json
- Linux: ~/.config/claude-desktop/claude_desktop_config.json
{
"mcpServers": {
"npm-sentinel-mcp": {
"command": "npx",
"args": [
"-y",
"@nekzus/mcp-server"
]
}
}
}
# Build with npm
npm install
npm run build
This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.
MIT © nekzus