Help
Access help information to understand how to use the MCP server for interacting with Google Gemini CLI, enabling natural language commands for file and code analysis.
Instructions
receive help information
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/simple-tools.ts:23-36 (handler)Complete implementation of the 'Help' tool, including schema (empty args), metadata, and handler function that executes the 'gemini -help' command via executeCommand.const helpArgsSchema = z.object({}); export const helpTool: UnifiedTool = { name: "Help", description: "receive help information", zodSchema: helpArgsSchema, prompt: { description: "receive help information", }, category: 'simple', execute: async (args, onProgress) => { return executeCommand("gemini", ["-help"], onProgress); } };
- src/tools/simple-tools.ts:23-23 (schema)Zod schema definition for the Help tool (accepts no arguments).const helpArgsSchema = z.object({});
- src/tools/index.ts:9-16 (registration)Registers the helpTool into the central toolRegistry array, making it available for execution.toolRegistry.push( askGeminiTool, pingTool, helpTool, brainstormTool, fetchChunkTool, timeoutTestTool );