pyodide_install-packages
Install Python packages in Pyodide environments using space-separated format, enabling Python code execution via LLMs on the MCP server.
Instructions
Install Python packages using Pyodide. Multiple packages can be specified using space-separated format.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
package | Yes | Python package(s) to install. For multiple packages, use space-separated format (e.g., 'numpy matplotlib pandas'). |
Input Schema (JSON Schema)
{
"properties": {
"package": {
"description": "Python package(s) to install. For multiple packages, use space-separated format (e.g., 'numpy matplotlib pandas').",
"type": "string"
}
},
"required": [
"package"
],
"type": "object"
}