Title: open_colab_browser_connection only opens a new scratch notebook — cannot connect to an existing Colab session #80
Jingzhen-Wang
started this conversation in
Ideas
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Problem: Fixed Scratch Notebook Constraint
The current
open_colab_browser_connectiontool always opens a hardcoded new scratch notebook. This creates several workflow bottlenecks:Workaround & Implementation
To address this, I extended the functionality of the tool and added a manual fallback mechanism:
1. Enhanced
open_colab_browser_connectionThe tool now presents a macOS native dialog with two options:
2. New
get_colab_connection_infoToolAdded as a companion tool for manual fallback:
token&portstring.Suggested Improvement
Allow
open_colab_browser_connectionto accept an optionalnotebook_urlparameter.This would enable agents (and users) to programmatically target an existing session rather than always defaulting to a new one, making the MCP integration significantly more flexible.
All reactions