add google sheets support

This commit is contained in:
Taylor Wilsdon
2025-06-06 12:45:15 -04:00
parent d4a07dcef5
commit 1c8c3cb4eb
5 changed files with 556 additions and 2 deletions

23
gsheets/__init__.py Normal file
View File

@@ -0,0 +1,23 @@
"""
Google Sheets MCP Integration
This module provides MCP tools for interacting with Google Sheets API.
"""
from .sheets_tools import (
list_spreadsheets,
get_spreadsheet_info,
read_sheet_values,
modify_sheet_values,
create_spreadsheet,
create_sheet,
)
__all__ = [
"list_spreadsheets",
"get_spreadsheet_info",
"read_sheet_values",
"modify_sheet_values",
"create_spreadsheet",
"create_sheet",
]