You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
refactor: replace CommandExecutor with BashSessionExecutor for persistent shell execution
BREAKING CHANGE: Removed CommandExecutor in favor of BashSessionExecutor. All shell tools now use persistent sessions by default. The run_command tool interface has been updated to support session-based execution with new parameters (is_input, blocking). CommandResult now includes additional metadata about the execution context.
Copy file name to clipboardExpand all lines: mcp_claude_code/tools/jupyter/notebook_edit.py
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -38,10 +38,10 @@
38
38
]
39
39
40
40
CellType=Annotated[
41
-
Literal["code", "markdown"]|None,
41
+
Literal["code", "markdown"],
42
42
Field(
43
43
description="The of the cell (code or markdown). If not specified, it defaults to the current cell type. If using edit_mode=insert, this is required.",
0 commit comments