cldkctl_notebook_create
Create Jupyter Notebooks on the MCP cldkctl Server by specifying project ID, name, namespace, image, CPU, memory, storage, and optional GPU resources.
Instructions
Call the cldkctl_notebook_create endpoint
Input Schema
Name | Required | Description | Default |
---|---|---|---|
cpu | Yes | CPU amount | |
gpu | No | GPU amount (optional) | |
image | Yes | Image ID | |
memory | Yes | Memory size | |
name | Yes | Notebook name | |
namespace | Yes | Namespace | |
project_id | Yes | Project ID | |
storage | Yes | Storage size |
Input Schema (JSON Schema)
{
"properties": {
"cpu": {
"description": "CPU amount",
"type": "string"
},
"gpu": {
"description": "GPU amount (optional)",
"type": "string"
},
"image": {
"description": "Image ID",
"type": "string"
},
"memory": {
"description": "Memory size",
"type": "string"
},
"name": {
"description": "Notebook name",
"type": "string"
},
"namespace": {
"description": "Namespace",
"type": "string"
},
"project_id": {
"description": "Project ID",
"type": "string"
},
"storage": {
"description": "Storage size",
"type": "string"
}
},
"required": [
"project_id",
"name",
"namespace",
"image",
"cpu",
"memory",
"storage"
],
"type": "object"
}