MCP Server for NPM Package Info
About
An MCP server for NPM JavaScript Package Management tools
Details
- Author
- snyk-labs
- GitHub stars
- 8
- Downloads
- 237
- Categories
- Other
Jump to
- Exposes a getNpmPackageInfo tool via MCP
- Uses HTTP (Streamable HTTP) transport for remote connections
- Returns structured package information
- Supports session management for stateful connections
- Intentionally vulnerable for educational security training
Install dependencies with npm install and start the server with npm start. The server listens on port 3000 by default, but you can set the PORT environment variable (e.g., PORT=3500 npm start). Configure the server in your Agent MCP configuration as an HTTP endpoint.
MCP Server for NPM Package Info
A Model Context Protocol server that provides a tool to fetch npm package information.
Security Disclaimer: this repository is intentionally vulnerable, intended to be used as an educational tool for MCP Server security.
How to use the MCP Server
Define the MCP Server in your Agent MCP configuration, as follows:
{
"servers": {
"npm-and-node-tools": {
"type": "http",
"url": "http://localhost:3500/mcp"
}
},
"inputs": []
}
Features
- Exposes a getNpmPackageInfo tool using MCP
- Uses HTTP (Streamable HTTP) transport for remote connections
- Returns structured package information
- Supports session management for stateful connections
Installation
npm install
Usage
Start the server:
npm start
The server will start listening on port 3000 by default. You can customize the port by setting the PORT environment variable:
PORT=3500 npm start
This server is designed to be used with IDE integrations and AI agents that support the Model Context Protocol over HTTP.
Tool: getNpmPackageInfo
Parameters:
- packageName (string): The name of the npm package to look up
Returns:
- packageInfo (object): JSON object containing all available information about the package
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.



