script_projects_versions_create
Create a new version for a Google Apps Script project by specifying the script ID and version description, enabling version control and project management within the Google Apps Script MCP Server.
Instructions
Creates a new version of a Google Apps Script project.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| description | Yes | A description for the new version. | |
| scriptId | Yes | The ID of the script project. |
Input Schema (JSON Schema)
{
"properties": {
"description": {
"description": "A description for the new version.",
"type": "string"
},
"scriptId": {
"description": "The ID of the script project.",
"type": "string"
}
},
"required": [
"scriptId",
"description"
],
"type": "object"
}