install-mcp
Install specific packages and versions using the MCP Environment & Installation Manager. Simplify local package setup and ensure consistent configurations across your server environment.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| packageName | Yes | Package name to install | |
| version | No | Specific version to install |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"packageName": {
"description": "Package name to install",
"type": "string"
},
"version": {
"description": "Specific version to install",
"type": "string"
}
},
"required": [
"packageName"
],
"type": "object"
}