Help
Access detailed support information for using the Gemini CLI MCP Server, designed to enable AI assistants in file analysis, context handling, and secure code execution.
Instructions
receive help information
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Input Schema (JSON Schema)
{
"properties": {},
"required": [],
"type": "object"
}
Implementation Reference
- lib/fixed-mcp-tool.js:296-302 (handler)The handler logic for the 'Help' tool. It returns a static text content 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 (schema)The tool schema definition for 'Help', including name, description, and empty inputSchema (no parameters required). This is part of the tools array returned by ListToolsRequestHandler.{ name: "Help", description: "receive help information", inputSchema: { type: "object", properties: {}, required: [] } },
- lib/fixed-mcp-tool.js:217-219 (registration)Registration of all tools via the ListToolsRequestHandler, which returns the tools array containing the 'Help' tool definition.server.setRequestHandler(ListToolsRequestSchema, async () => { return { tools }; });