Help
Access help information for the Gemini MCP Tool to understand how to use its features for analyzing files and codebases with natural language commands.
Instructions
receive help information
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/simple-tools.ts:25-36 (handler)The 'Help' tool implementation, including name, description, schema reference, and execute handler that runs the 'gemini -help' command.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 arguments (empty object, no parameters required).const helpArgsSchema = z.object({});
- src/tools/index.ts:9-16 (registration)Registration of the helpTool into the central toolRegistry array.toolRegistry.push( askGeminiTool, pingTool, helpTool, brainstormTool, fetchChunkTool, timeoutTestTool );