Server data from the Official MCP Registry
MCP server for the Google Apps Script API: projects, code, versions, deployments and executions.
About
MCP server for the Google Apps Script API: projects, code, versions, deployments and executions.
Security Report
Valid MCP server (1 strong, 1 medium validity signals). No known CVEs in dependencies. Package registry verified. Imported from the Official MCP Registry. Trust signals: trusted author (13/13 approved).
4 files analyzed · 1 issue found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
Permissions Required
This plugin requests these system permissions. Most are normal for its category.
What You'll Need
Set these up before or after installing:
Environment variable: GOOGLE_APPS_SCRIPT_CLIENT_ID
Environment variable: GOOGLE_APPS_SCRIPT_CLIENT_SECRET
Environment variable: GOOGLE_APPS_SCRIPT_REFRESH_TOKEN
Environment variable: GOOGLE_APPS_SCRIPT_ACCESS_TOKEN
Environment variable: GOOGLE_APPS_SCRIPT_API_BASE
Environment variable: GOOGLE_APPS_SCRIPT_TIMEOUT_MS
Environment variable: GOOGLE_APPS_SCRIPT_MAX_RETRIES
How to Install
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-a1-x-tech-mcp-google-apps-script": {
"env": {
"GOOGLE_APPS_SCRIPT_API_BASE": "your-google-apps-script-api-base-here",
"GOOGLE_APPS_SCRIPT_CLIENT_ID": "your-google-apps-script-client-id-here",
"GOOGLE_APPS_SCRIPT_TIMEOUT_MS": "your-google-apps-script-timeout-ms-here",
"GOOGLE_APPS_SCRIPT_MAX_RETRIES": "your-google-apps-script-max-retries-here",
"GOOGLE_APPS_SCRIPT_ACCESS_TOKEN": "your-google-apps-script-access-token-here",
"GOOGLE_APPS_SCRIPT_CLIENT_SECRET": "your-google-apps-script-client-secret-here",
"GOOGLE_APPS_SCRIPT_REFRESH_TOKEN": "your-google-apps-script-refresh-token-here"
},
"args": [
"-y",
"mcp-google-apps-script"
],
"command": "npx"
}
}
}Documentation
View on GitHubFrom the project's GitHub README.
Google Apps Script MCP
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.
- 13 tools. Create standalone and bound projects, read and update code files, snapshot immutable versions, manage deployments, run functions, and inspect execution history and metrics.
- Versions are immutable. A version snapshots HEAD and can never be edited or deleted; deployments point at versions, so you ship and roll back without changing a URL.
- The manifest always survives. Merge mode keeps the
appsscriptmanifest and every file you did not mention; replace mode refuses a file set without the manifest before any network traffic. - Keep your scriptId. The API cannot list projects and cannot delete them — the
scriptIdreturned bycreate_projectis the only handle. - Minimal Google scopes. Each operation names its own scope (
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
See it work in a minute
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.
Contents
- Quick start
- What you can ask it to do
- How a project changes
- What can change
- Getting access
- Configuration
- Data, limits and background work
- Technical documentation
- Support
Quick start
You need Node.js 20+, a Google account and OAuth credentials from a Google Cloud project with the Google Apps Script API enabled.
- Prepare Google OAuth access.
- Add the server to your AI app.
- Ask the read-only question above.
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:
codex mcp add google-apps-script \
--env GOOGLE_APPS_SCRIPT_CLIENT_ID=your_client_id \
--env GOOGLE_APPS_SCRIPT_CLIENT_SECRET=your_client_secret \
--env GOOGLE_APPS_SCRIPT_REFRESH_TOKEN=your_refresh_token \
-- npx -y mcp-google-apps-script@latest
codex mcp list
claude mcp add \
--env GOOGLE_APPS_SCRIPT_CLIENT_ID=your_client_id \
--env GOOGLE_APPS_SCRIPT_CLIENT_SECRET=your_client_secret \
--env GOOGLE_APPS_SCRIPT_REFRESH_TOKEN=your_refresh_token \
--transport stdio --scope user google-apps-script \
-- npx -y mcp-google-apps-script@latest
claude mcp list
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:
{
"mcpServers": {
"google-apps-script": {
"command": "npx",
"args": ["-y", "mcp-google-apps-script@latest"],
"env": {
"GOOGLE_APPS_SCRIPT_CLIENT_ID": "your_client_id",
"GOOGLE_APPS_SCRIPT_CLIENT_SECRET": "your_client_secret",
"GOOGLE_APPS_SCRIPT_REFRESH_TOKEN": "your_refresh_token"
}
}
}
}
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.
Claude Desktop MCP documentation
Add this to ~/.cursor/mcp.json on macOS/Linux or %USERPROFILE%\.cursor\mcp.json on Windows:
{
"mcpServers": {
"google-apps-script": {
"type": "stdio",
"command": "npx",
"args": ["-y", "mcp-google-apps-script@latest"],
"env": {
"GOOGLE_APPS_SCRIPT_CLIENT_ID": "your_client_id",
"GOOGLE_APPS_SCRIPT_CLIENT_SECRET": "your_client_secret",
"GOOGLE_APPS_SCRIPT_REFRESH_TOKEN": "your_refresh_token"
}
}
}
}
Run MCP: Open User Configuration and add:
{
"servers": {
"google-apps-script": {
"type": "stdio",
"command": "npx",
"args": ["-y", "mcp-google-apps-script@latest"],
"env": {
"GOOGLE_APPS_SCRIPT_CLIENT_ID": "${input:apps_script_client_id}",
"GOOGLE_APPS_SCRIPT_CLIENT_SECRET": "${input:apps_script_client_secret}",
"GOOGLE_APPS_SCRIPT_REFRESH_TOKEN": "${input:apps_script_refresh_token}"
}
}
},
"inputs": [
{ "type": "promptString", "id": "apps_script_client_id", "description": "Google OAuth client ID" },
{ "type": "promptString", "id": "apps_script_client_secret", "description": "Google OAuth client secret", "password": true },
{ "type": "promptString", "id": "apps_script_refresh_token", "description": "Google OAuth refresh token", "password": true }
]
}
Check it with MCP: List Servers.
What you can ask it to do
Inspect a project and its runs
- Show this script's files and explain what each function does.
- Which functions failed this week? Show the execution history for
sendDigest. - How many users, executions and failures did this script have over the last 7 days?
Write and evolve code
- Create a standalone project, or a script bound to a Doc, Sheet, Slides or Form.
- Add a helper function to one file without touching the others.
- Snapshot the current code as a version with a description before we refactor.
Ship, run and roll back
- Deploy version 4 and show its entry points — web app URL or API-executable config.
- Run
sendDigestand show the result; if the script throws, show the stack trace. - Repoint the deployment back to version 3 without changing its URL.
How a project changes
create_projectcreates a project — standalone, or bound to a Doc, Sheet, Slides or Form. Keep the returnedscriptId: the API cannot list projects.- Code lives at HEAD as files addressed by name without extension.
update_project_contentmerges by default — it upserts the files you name and keeps the rest — and only replaces the entire set when asked; theappsscriptmanifest can never be deleted. create_versionsnapshots HEAD as an immutable version — no edit, no delete, numbers only grow.- A deployment exposes a version as a web app or API executable. Updating a deployment repoints it at another version without changing its URL; the automatic
@HEADdeployment 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.
What can change
| 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.
Getting access
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:
https://www.googleapis.com/auth/script.projects https://www.googleapis.com/auth/script.deployments https://www.googleapis.com/auth/script.processes https://www.googleapis.com/auth/script.metricsFor inspection-only use, replace the first two with the read-only variants
script.projects.readonlyandscript.deployments.readonly;list_processesandget_project_metricsstill needscript.processesandscript.metrics, which have no narrower form.run_functionneeds 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.
Configuration
| 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.
Data, limits and background work
- Requests go to Google Apps Script. The local server refreshes Google OAuth tokens and calls the Apps Script API. Its anonymous telemetry contains an installation ID, package version, AI client and platform versions, and tool names — never OAuth tokens, script sources, tool arguments or prompts. Set
ASKADS_TELEMETRY=0to opt out. - Writes are never replayed blindly. On
429, the server uses backoff; reads also retry after network and5xxerrors, while writes are not replayed after an uncertain failure — a duplicatedcreate_versionpiles up immutable versions, and a duplicatedrun_functionexecutes side effects twice. After an ambiguous failure, checklist_versionsor the execution history instead of re-sending. - There is no background polling. The server runs only when called, and a function executes only when you ask for it. Scripts keep their own Apps Script triggers on Google's side; if your AI app supports scheduled tasks, it can also check the execution history periodically.
Technical documentation
- MCP capability catalog — task-oriented pages for every tool.
- All tools and inputs
- Development documentation
- Publishing documentation
- Google Apps Script API reference
Support
Found a bug or need a scenario? Create an issue or write in Telegram.
Reviews
No reviews yet
Be the first to review this server!
More Developer Tools MCP Servers
Git
Freeby Modelcontextprotocol · Developer Tools
Read, search, and manipulate Git repositories programmatically
Fetch
Freeby Modelcontextprotocol · Developer Tools
Web content fetching and conversion for efficient LLM usage
Toleno
Freeby Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
mcp-creator-python
Freeby mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.
MCP Marketplace
Freeby mcp-marketplace · Developer Tools
Search and install MCP servers from inside your AI client.
MarkItDown
Freeby Microsoft · Content & Media
Convert files (PDF, Word, Excel, images, audio) to Markdown for LLM consumption
