Gsheet Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Gsheet Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
An MCP (Model Context Protocol) server that allows AI agents to read, write, and manage Google Sheets using the Google Sheets API v4.
uv (recommended) or pipsheet-mcp-bot) and click Create and Continue.service-account-key.json.client_email) with Editor permissions. uv sync
# or
pip install mcp pandas python-dotenv google-api-python-client google-authservice-account-key.json (or update .env to point to its path)..env file: SPREADSHEET_ID=your_spreadsheet_id_here
SERVICE_ACCOUNT_FILE=service-account-key.jsonTip: The Spreadsheet ID is the long string in your sheet's URL: `https://docs.google.com/spreadsheets/d/SPREADSHEET_ID/edit`
uvx (Recommended)This method allows you to run the server directly from GitHub without cloning the repository manually.
Add this configuration to your MCP settings file (e.g., claude_desktop_config.json or mcp_config.json):
{
"mcpServers": {
"google-sheet": {
"command": "uvx",
"args": [
"--from",
"git+https://github.com/vfh-tech/gsheet-mcp",
"sheet-mcp"
],
"env": {
"SPREADSHEET_ID": "your_spreadsheet_id_here",
"SERVICE_ACCOUNT_FILE": "C:\\path\\to\\your\\service-account-key.json"
}
}
}
}If you prefer to clone the repository and run it locally:
{
"mcpServers": {
"google-sheet": {
"command": "uv",
"args": [
"--directory",
"/absolute/path/to/sheet-mcp",
"run",
"sheet-mcp"
],
"env": {
"SPREADSHEET_ID": "your_spreadsheet_id_here",
"SERVICE_ACCOUNT_FILE": "service-account-key.json"
}
}
}
}A verification script is included to test the connection and tools:
uv run test_server.pylist_sheets(): Lists all sheets in the configured spreadsheet.read_sheet_data(sheet_name: str, range_name: str = None, last_20_rows: bool = False): Reads data from the specified sheet. Set last_20_rows=True to read only the last 20 rows (plus header).create_sheet(title: str): Creates a new sheet (tab).rename_sheet(old_title: str, new_title: str): Renames an existing sheet.append_data(sheet_name: str, values: List[List[Any]]): Appends rows of data to the bottom of a sheet.add_column(sheet_name: str, header: str, values: List[Any] = None): Adds a new column to the right of the existing data, with an optional header and values.delete_sheet(sheet_name: str): Deletes an entire sheet.delete_row(sheet_name: str, start_index: int, end_index: int): Deletes rows within a specified range.delete_column(sheet_name: str, start_index: int, end_index: int): Deletes columns within a specified range.~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.