add google sheets support
This commit is contained in:
23
gsheets/__init__.py
Normal file
23
gsheets/__init__.py
Normal 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",
|
||||
]
|
||||
Reference in New Issue
Block a user