run_command
Execute allowed shell commands including clasp, npm, git, and directory operations to manage Google Apps Script projects and development workflows for revenue tracking systems.
Instructions
Execute allowed shell commands (clasp, npm, git, dir). For clasp commands, run from apps-script folder.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
command | Yes | Command to run (must be in allowed list) | |
workingDirectory | No | Directory to run command in (optional, defaults to revenue-engine-mcp) |
Input Schema (JSON Schema)
{
"properties": {
"command": {
"description": "Command to run (must be in allowed list)",
"type": "string"
},
"workingDirectory": {
"description": "Directory to run command in (optional, defaults to revenue-engine-mcp)",
"type": "string"
}
},
"required": [
"command"
],
"type": "object"
}