MCP server that lets Claude read and push Google Apps Script (.gs) project code directly via the Apps Script API. Supports local (stdio) and hosted (HTTP, e.g. Render) transports.
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Claude Desktop
Claude Code
Cursor
Add to claude_desktop_config.json:
{
"mcpServers": {
"apps-script-mcp-serv": {
"command": "npx",
"args": [
"-y",
"OLUYEMIOPEYEMI7/apps-script-mcp-server"
]
}
}
}
📋 Copy
Run in terminal:
claude mcp add apps-script-mcp-serv npx -y OLUYEMIOPEYEMI7/apps-script-mcp-server
📋 Copy
Add to .cursor/mcp.json:
{
"mcpServers": {
"apps-script-mcp-serv": {
"command": "npx",
"args": [
"-y",
"OLUYEMIOPEYEMI7/apps-script-mcp-server"
]
}
}
}
📋 Copy