An MCP server for interacting with Colab.
- Install
uv(pip install uv) - Configure for usage (eg for mcp.json style services):
...
"mcpServers": {
"colab-mcp": {
"command": "uvx",
"args": ["git+https://github.com/googlecolab/colab-mcp"],
"timeout": 30000
}
}
...
(If you have a non-standard default package index (Googlers), you may also need to add --index https://pypi.org/simple)
We are using GitHub discussions as the place for issue discussion and feature requests. As discussions mature into action items, we will add those items as issues. This helps us ensure that issues in the issue tracker are well-understood, deduplicated, and actionable. For these reasons, please do NOT open issues directly.
uvis required (pip install uv)- Configure git hooks to run repo presubmits
git config core.hooksPath .githooks...
"mcpServers": {
"colab-mcp": {
"command": "uv",
"args": ["run", "colab-mcp"],
"cwd": "/path/to/github/colab-mcp",
"timeout": 30000
}
}
...