install_package
Install Python packages in a persistent REPL environment using the MCP protocol. Specify the package name to enable Python runtime customization and execution.
Instructions
Install a Python package using uv
Input Schema
Name | Required | Description | Default |
---|---|---|---|
package | Yes | Package name to install (e.g., 'pandas') |
Input Schema (JSON Schema)
{
"properties": {
"package": {
"description": "Package name to install (e.g., 'pandas')",
"type": "string"
}
},
"required": [
"package"
],
"type": "object"
}