AgentHubAgentHub

Colab Drive MCP

MCP ServerMCP Registry官方收录

io.github.YummyTastyCode/colab-drive-mcp · v0.1.3

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

概览

Colab Drive MCP 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "colab-drive-mcp": {
      "command": "uvx",
      "args": [
        "colab-drive-mcp"
      ],
      "env": {
        "COLAB_MCP_ROOT": "<COLAB_MCP_ROOT>"
      }
    }
  }
}

环境变量

COLAB_MCP_ROOT必填

Absolute local directory that bounds notebook file access.

COLAB_MCP_DRIVE_ACCESS可选

Google Drive access mode: file for minimal access or full for discovering existing notebooks.

COLAB_MCP_GOOGLE_CREDENTIALS可选

Optional path to the local Google OAuth Desktop client JSON.

COLAB_MCP_GOOGLE_TOKEN可选

Optional path to the local Google OAuth token JSON.

相关资源

统一 Manifest

{
  "id": "io.github.YummyTastyCode/colab-drive-mcp",
  "type": "mcp-server",
  "version": "0.1.3",
  "displayName": "Colab Drive MCP",
  "description": "Synchronize Colab notebook files through Google Drive without executing notebook code.",
  "repository": {
    "url": "https://github.com/YummyTastyCode/colab-drive-mcp",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "pypi",
        "identifier": "colab-drive-mcp",
        "version": "0.1.3",
        "runtimeHint": "uvx",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "COLAB_MCP_ROOT",
            "description": "Absolute local directory that bounds notebook file access.",
            "isRequired": true
          },
          {
            "name": "COLAB_MCP_DRIVE_ACCESS",
            "description": "Google Drive access mode: file for minimal access or full for discovering existing notebooks."
          },
          {
            "name": "COLAB_MCP_GOOGLE_CREDENTIALS",
            "description": "Optional path to the local Google OAuth Desktop client JSON."
          },
          {
            "name": "COLAB_MCP_GOOGLE_TOKEN",
            "description": "Optional path to the local Google OAuth token JSON."
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.YummyTastyCode/colab-drive-mcp",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.YummyTastyCode%2Fcolab-drive-mcp/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
Colab Drive MCP — MCP Server 安装与配置 · AgentHub