Help
Access help information for using the Gemini CLI MCP Server to interact with Google's Gemini CLI, analyze files, handle large contexts, and execute code safely.
Instructions
receive help information
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- lib/fixed-mcp-tool.js:296-302 (handler)The switch case handler for the 'Help' tool within the CallToolRequestSchema handler. It returns a static text content block listing all available tools and their descriptions.case "Help": return { content: [{ type: "text", text: "Gemini CLI MCP Tool - Fixed Version\n\nAvailable commands:\n- ask-gemini: Interact with Gemini CLI\n- ping: Test connection\n- Help: Show this help\n- brainstorm: Generate novel ideas with creative frameworks\n- fetch-chunk: Retrieve cached chunks from changeMode responses\n- timeout-test: Test timeout prevention" }] };
- lib/fixed-mcp-tool.js:119-127 (registration)The 'Help' tool definition in the tools array, which is returned by ListToolsRequestSchema. Includes name, description, and empty input schema. This serves as the tool registration.{ name: "Help", description: "receive help information", inputSchema: { type: "object", properties: {}, required: [] } },