install_packages
Install and manage npm packages with version control in specified project directories. Supports dev dependencies for streamlined Node.js development workflows.
Instructions
Install npm packages with version management
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| dev | No | Install as dev dependency | |
| packages | Yes | Package names to install | |
| path | Yes | Project directory path |
Input Schema (JSON Schema)
{
"properties": {
"dev": {
"default": false,
"description": "Install as dev dependency",
"type": "boolean"
},
"packages": {
"description": "Package names to install",
"items": {
"type": "string"
},
"type": "array"
},
"path": {
"description": "Project directory path",
"type": "string"
}
},
"required": [
"packages",
"path"
],
"type": "object"
}