Cover image
Try Now
2025-02-27

用于与Google Drive和Google表相互作用的Rust的模型上下文协议(MCP)服务器。

3 years

Works with Finder

1

Github Watches

1

Github Forks

1

Github Stars

Google Drive & Sheets MCP Server

A Model Context Protocol (MCP) server built in Rust for interacting with Google Drive and Google Sheets. This tool provides MCP-compatible interfaces for Google Workspace services, allowing it to be used as part of larger agent workflows and compositions.

Features

Google Drive Operations

  • List files in Google Drive with filtering options:
    • Filter by MIME type
    • Custom search queries
    • Configurable page size
    • Custom ordering

Google Sheets Operations

  • Read data from Google Sheets with options:
    • Specify range
    • Choose major dimension (ROWS or COLUMNS)
  • Write data to Google Sheets
  • Create new spreadsheets with:
    • Custom title
    • Multiple sheets
  • Clear values from ranges in spreadsheets

MCP Integration

This server implements the Model Context Protocol (MCP), making it compatible with agent frameworks like Distri. Each service exposes its capabilities as MCP tools:

Drive Tools

  • list_files: List and filter Drive files with customizable parameters
  • Available capabilities exposed via resources/list endpoint

Sheets Tools

  • read_values: Read spreadsheet data with dimension control
  • write_values: Write data to spreadsheets
  • create_spreadsheet: Create new spreadsheets
  • clear_values: Clear ranges in spreadsheets
  • Available capabilities exposed via resources/list endpoint

Prerequisites

  • Rust (latest stable version)
  • Google Cloud Project with Drive and Sheets APIs enabled
  • OAuth 2.0 credentials configured for your Google Cloud Project

Installation

Install the mcp-google binary directly from GitHub using Cargo:

cargo install --git https://github.com/distrihub/mcp-google-workspace.git

This will install the mcp-google command to your system.

Configuration

Before using the server, you need to:

  1. Set up a Google Cloud Project
  2. Enable Google Drive and Google Sheets APIss
  3. Create OAuth 2.0 credentials
  4. Set up your environment variables:
    • ACCESS_TOKEN: Your Google OAuth access token
    • GOOGLE_CLIENT_ID: Your OAuth client ID
    • GOOGLE_CLIENT_SECRET: Your OAuth client secret
    • GOOGLE_REFRESH_TOKEN: Your OAuth refresh token

Usage

As MCP Server

The servers can be started independently and will communicate using the MCP protocol over stdio:

Start the Drive MCP server:

mcp-google drive --access-token <your-access-token>

Start the Sheets MCP server:

mcp-google sheets --access-token <your-access-token>

Using with Distri

This server can be used as part of a Distri agent configuration:

agents:
  google_workspace:
    drive:
      type: mcp
      command: ["mcp-google", "drive", "--access-token", "${ACCESS_TOKEN}"]
    sheets:
      type: mcp
      command: ["mcp-google", "sheets", "--access-token", "${ACCESS_TOKEN}"]

Token Management

Refresh your OAuth token:

mcp-google refresh \
  --client-id <your-client-id> \
  --client-secret <your-client-secret> \
  --refresh-token <your-refresh-token>

License

This project is licensed under the MIT License - see the LICENSE file for details.

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Note

This is an MCP-compatible server that interacts with Google services. Make sure you have appropriate permissions and credentials before using the tool.

相关推荐

  • NiKole Maxwell
  • I craft unique cereal names, stories, and ridiculously cute Cereal Baby images.

  • Bora Yalcin
  • Evaluator for marketplace product descriptions, checks for relevancy and keyword stuffing.

  • Joshua Armstrong
  • Confidential guide on numerology and astrology, based of GG33 Public information

  • https://suefel.com
  • Latest advice and best practices for custom GPT development.

  • Callycode Limited
  • A geek-themed horoscope generator blending Bitcoin prices, tech jargon, and astrological whimsy.

  • Alexandru Strujac
  • Efficient thumbnail creator for YouTube videos

  • Emmet Halm
  • Converts Figma frames into front-end code for various mobile frameworks.

  • Khalid kalib
  • Write professional emails

  • Beniyam Berhanu
  • Therapist adept at identifying core issues and offering practical advice with images.

  • Elijah Ng Shi Yi
  • Advanced software engineer GPT that excels through nailing the basics.

  • lumpenspace
  • Take an adjectivised noun, and create images making it progressively more adjective!

  • apappascs
  • 发现市场上最全面,最新的MCP服务器集合。该存储库充当集中式枢纽,提供了广泛的开源和专有MCP服务器目录,并提供功能,文档链接和贡献者。

  • ShrimpingIt
  • MCP系列GPIO Expander的基于Micropython I2C的操作,源自ADAFRUIT_MCP230XX

  • OffchainLabs
  • 进行以太坊的实施

  • huahuayu
  • 统一的API网关,用于将多个Etherscan样区块链Explorer API与对AI助手的模型上下文协议(MCP)支持。

  • deemkeen
  • 用电源组合控制您的MBOT2:MQTT+MCP+LLM

    Reviews

    4 (1)
    Avatar
    user_XWtfB70a
    2025-04-16

    I've been using mcp-google-workspace by distrihub and it has significantly improved my workflow efficiency. The seamless integration with Google Workspace is impressive, and the setup is straightforward. This tool saves me a lot of time and effort, making collaboration smoother than ever. Highly recommended for anyone looking to enhance their productivity with Google Workspace! Check it out on GitHub: https://github.com/distrihub/mcp-google-workspace