https://github.com/Streen9/react-mcp

by Streen9
Verified

install-package

Install a npm package in a project

Input Schema

NameRequiredDescriptionDefault
devNoWhether to install as a dev dependency
directoryNoDirectory of the project (defaults to current directory)
packageNameYesName of the package to install (can include version)

Input Schema (JSON Schema)

{ "properties": { "dev": { "description": "Whether to install as a dev dependency", "type": "boolean" }, "directory": { "description": "Directory of the project (defaults to current directory)", "type": "string" }, "packageName": { "description": "Name of the package to install (can include version)", "type": "string" } }, "required": [ "packageName" ], "type": "object" }