pip_install
Install Python packages via pip, specifying package names, a requirements file, or a virtual environment, enabling seamless integration with Code MCP Server workflows.
Instructions
Install Python packages using pip
Input Schema
Name | Required | Description | Default |
---|---|---|---|
packages | No | Package names | |
requirements_file | No | Path to requirements.txt | |
venv | No | Path to virtual environment |
Input Schema (JSON Schema)
{
"properties": {
"packages": {
"description": "Package names",
"items": {
"type": "string"
},
"type": "array"
},
"requirements_file": {
"description": "Path to requirements.txt",
"type": "string"
},
"venv": {
"description": "Path to virtual environment",
"type": "string"
}
},
"type": "object"
}