export_notebook
Export a notebook from the Databricks workspace in a specified format, such as Jupyter, using the Databricks MCP Server. Ideal for integrating notebook content into workflows or external systems.
Instructions
Export a notebook from the workspace
Input Schema
Name | Required | Description | Default |
---|---|---|---|
format | No | JUPYTER | |
path | Yes |
Input Schema (JSON Schema)
{
"properties": {
"format": {
"default": "JUPYTER",
"title": "Format",
"type": "string"
},
"path": {
"title": "Path",
"type": "string"
}
},
"required": [
"path"
],
"title": "export_notebookArguments",
"type": "object"
}