gemini_executeRun tasks with Gemini CLI. Has full file system access and can run shell commands. Good for: creating files, refactoring, code analysis, running commands, etc.Input schema{
"type": "object",
"properties": {
"prompt": {
"type": "string",
"description": "What you want Gemini to do. Be specific."
},
"model": {
"type": "string",
"description": "Which model to use",
"enum": [
"gemini-2.5-flash",
"gemini-2.5-pro",
"gemini-3-flash-preview",
"gemini-3-pro-preview"
]
},
"approvalMode": {
"type": "string",
"description": "How to handle tool approvals: 'default' = ask each time, 'auto_edit' = auto-approve edits, 'yolo' = approve everything",
"enum": [
"default",
"auto_edit",
"yolo"
],
"default": "yolo"
},
"outputFormat": {
"type": "string",
"description": "Output as 'text' or 'json'",
"enum": [
"text",
"json"
],
"default": "text"
},
"sandbox": {
"type": "boolean",
"description": "Run in sandbox for extra safety",
"default": false
},
"workingDirectory": {
"type": "string",
"description": "Run from this directory"
},
"includeDirectories": {
"type": "array",
"items": {
"type": "string"
},
"description": "Extra directories to include (max 5)"
},
"debug": {
"type": "boolean",
"description": "Show debug output",
"default": false
}
},
"required": [
"prompt"
]
} | — | | — |