https://github.com/googlecolab/colab-mcp
An MCP server for interacting with Google Colab
https://github.com/googlecolab/colab-mcp
Last synced: 5 months ago
JSON representation
An MCP server for interacting with Google Colab
- Host: GitHub
- URL: https://github.com/googlecolab/colab-mcp
- Owner: googlecolab
- License: apache-2.0
- Created: 2025-10-24T18:38:59.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2026-03-06T23:14:07.000Z (5 months ago)
- Last Synced: 2026-03-07T04:25:45.173Z (5 months ago)
- Language: Python
- Size: 308 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
Awesome Lists containing this project
README
# Colab-mcp
An MCP server for interacting with Colab.
# Setup
- 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`)
## Issues & Discussions
We are using GitHub [discussions](https://github.com/googlecolab/colab-mcp/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.**
## Internal - For Colab Developers
### Prerequisites
- `uv` is required (`pip install uv`)
- Configure git hooks to run repo presubmits
```shell
git config core.hooksPath .githooks
```
### Gemini CLI setup
```
...
"mcpServers": {
"colab-mcp": {
"command": "uv",
"args": ["run", "colab-mcp"],
"cwd": "/path/to/github/colab-mcp",
"timeout": 30000
}
}
...
```