Skip to content
VS Code

Colab Drive MCP for VS Code

io.github.yummytastycode/colab-drive-mcp

Synchronize Colab notebook files through Google Drive without executing notebook code.

client:VS Code transport:stdio runtime:pypi

Install Colab Drive MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "colab-mcp-root",
      "description": "COLAB_MCP_ROOT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "colab-mcp-drive-access",
      "description": "COLAB_MCP_DRIVE_ACCESS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "colab-mcp-google-credentials",
      "description": "COLAB_MCP_GOOGLE_CREDENTIALS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "colab-mcp-google-token",
      "description": "COLAB_MCP_GOOGLE_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "colab-drive-mcp": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "colab-drive-mcp"
      ],
      "env": {
        "COLAB_MCP_ROOT": "${input:colab-mcp-root}",
        "COLAB_MCP_DRIVE_ACCESS": "${input:colab-mcp-drive-access}",
        "COLAB_MCP_GOOGLE_CREDENTIALS": "${input:colab-mcp-google-credentials}",
        "COLAB_MCP_GOOGLE_TOKEN": "${input:colab-mcp-google-token}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

Colab Drive MCP in other clients