https://github.com/sammcj/mcp-package-version

MIT License
311
50
  • Apple
  • Linux

check_npm_versions

Check latest stable versions for npm packages

Input Schema

NameRequiredDescriptionDefault
constraintsNoOptional constraints for specific packages
dependenciesYesDependencies object from package.json

Input Schema (JSON Schema)

{ "properties": { "constraints": { "additionalProperties": { "properties": { "excludePackage": { "description": "Exclude this package from updates", "type": "boolean" }, "majorVersion": { "description": "Limit updates to this major version", "type": "number" } }, "type": "object" }, "description": "Optional constraints for specific packages", "type": "object" }, "dependencies": { "additionalProperties": { "type": "string" }, "description": "Dependencies object from package.json", "type": "object" } }, "required": [ "dependencies" ], "type": "object" }