The full upstream README, mirrored here for reference. Install config, tool schemas, adoption signals, and an original overview live on the Google Apps Script MCP listing page.
English | Русский
A1 Google Apps Script MCP lets an AI app write and operate Google Apps Script in plain language. Create a script project, read and edit its code, snapshot versions, manage deployments, run functions and read the execution history.
It uses the Google Apps Script API with your Google account. It distinguishes the editable HEAD code from immutable versions and makes the limits of the Apps Script API explicit instead of implying that every scripting task is possible.
appsscript manifest and every file you did not mention; replace mode refuses a file set without the manifest before any network traffic.scriptId returned by create_project is the only handle.script.projects, script.deployments, script.processes, script.metrics); request only what your tasks need.Start with a read-only question:
Show me the files in my report script and which functions failed this week.
Connect the server · Explore use cases · Open technical documentation
You: Show the code and the recent runs of my report script.
Assistant: Shows every file with its source and the execution history — which functions ran, when, and which failed. Nothing changes.
You: Add a
formatDatehelper to the Utils file and keep everything else as is.Assistant: Shows the proposed source and confirms that merge mode leaves the other files untouched, then asks for confirmation before writing.
You: Confirm.
Assistant: Writes the file to HEAD. It does not create a version, redeploy or run anything unless you ask separately.
You need Node.js 20+, a Google account and OAuth credentials from a Google Cloud project with the Google Apps Script API enabled.
In the app: open Settings → MCP servers, select Add server, choose STDIO, enter the command npx -y mcp-google-apps-script@latest and environment variables GOOGLE_APPS_SCRIPT_CLIENT_ID, GOOGLE_APPS_SCRIPT_CLIENT_SECRET, GOOGLE_APPS_SCRIPT_REFRESH_TOKEN, then select Save and Restart.
From the command line:
The current official path is Settings → Extensions. For a custom desktop extension, open Advanced settings → Extension Developer → Install Extension…, select a .mcpb file and follow the prompts.
This repository currently publishes an npm stdio package and does not contain a .mcpb bundle. For Claude Desktop builds that still support local configuration, use the following JSON stdio configuration as a fallback:
In those builds, save it to ~/Library/Application Support/Claude/claude_desktop_config.json on macOS or %APPDATA%\Claude\claude_desktop_config.json on Windows.
Add this to ~/.cursor/mcp.json on macOS/Linux or %USERPROFILE%\.cursor\mcp.json on Windows:
Run MCP: Open User Configuration and add:
Check it with MCP: List Servers.
sendDigest.sendDigest and show the result; if the script throws, show the stack trace.create_project creates a project — standalone, or bound to a Doc, Sheet, Slides or Form. Keep the returned scriptId: the API cannot list projects.update_project_content merges by default — it upserts the files you name and keeps the rest — and only replaces the entire set when asked; the appsscript manifest can never be deleted.create_version snapshots HEAD as an immutable version — no edit, no delete, numbers only grow.@HEAD deployment cannot be deleted.The API cannot delete a project either — that means deleting its Drive file, which this server does not cover. run_function requires an API-executable deployment, an OAuth client from the same Cloud project as the script and the script's own scopes on the token; Apps Script stops any execution after 6 minutes. The execution history shows status and timing but no error messages — those live in Cloud Logging or come from re-running the function.
| Operation | What happens | Confirmation boundary |
|---|---|---|
| Read a project, its code, versions, runs or metrics | Reads data | No change |
| Create a project | Adds a standalone or bound script project | Changes Google Apps Script |
| Update project files | Overwrites code at HEAD; replace mode swaps the entire file set | Changes a project |
| Create a version | Adds an immutable snapshot that can never be removed | Changes a project |
| Create or update a deployment | Changes what a live URL or API endpoint serves | Changes a project's live behavior |
| Delete a deployment | Permanently breaks the deployment URL | Destructive |
| Run a function | Executes real code with real side effects | Destructive |
| Raw API request | Can call API methods without a dedicated tool | Potentially destructive |
The AI client controls confirmation prompts. The server marks reads, writes and destructive tools so the client can distinguish an inspection from a live change.
The Google Apps Script API requires OAuth 2.0; an API key is not enough.
Create or select a Google Cloud project and enable Google Apps Script API.
Turn on the per-account toggle at script.google.com/home/usersettings — without it every call fails with 403.
Configure the OAuth consent screen and create a Desktop app OAuth client.
Authorize the Google account that owns the scripts. The OAuth 2.0 Playground can obtain the refresh token when Use your own OAuth credentials is enabled.
Request the scopes for the tools you plan to use:
For inspection-only use, replace the first two with the read-only variants script.projects.readonly and script.deployments.readonly; list_processes and get_project_metrics still need script.processes and script.metrics, which have no narrower form. run_function needs none of these scopes — instead the token must carry every scope the target script itself uses, and the OAuth client must belong to the same Cloud project as the script.
Testing-mode OAuth refresh tokens can expire after seven days. Publish the OAuth app, or use an Internal app in a Workspace domain, when you need long-lived access. Treat the client secret and refresh token as passwords.
The setup_instructions tool returns this same checklist and works even before credentials are configured.
| Variable | Required | Description |
|---|---|---|
GOOGLE_APPS_SCRIPT_CLIENT_ID | Yes* | OAuth client ID. |
GOOGLE_APPS_SCRIPT_CLIENT_SECRET | Yes* | OAuth client secret. |
GOOGLE_APPS_SCRIPT_REFRESH_TOKEN | Yes* | OAuth refresh token. |
GOOGLE_APPS_SCRIPT_ACCESS_TOKEN | Yes* | Short-lived alternative to the OAuth trio. |
GOOGLE_APPS_SCRIPT_API_BASE | No | Google Apps Script API base URL override. |
GOOGLE_APPS_SCRIPT_TIMEOUT_MS | No | Per-request timeout; default 60000 ms. |
GOOGLE_APPS_SCRIPT_MAX_RETRIES | No | Temporary-error retries; default 3. |
* Provide either the OAuth trio or an access token.
ASKADS_TELEMETRY=0 to opt out.429, the server uses backoff; reads also retry after network and 5xx errors, while writes are not replayed after an uncertain failure — a duplicated create_version piles up immutable versions, and a duplicated run_function executes side effects twice. After an ambiguous failure, check list_versions or the execution history instead of re-sending.Found a bug or need a scenario? Create an issue or write in Telegram.
You made it to the end!