Skip to main content
Glama

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
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • 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); } };
  • Zod schema definition for the Help tool (accepts no arguments).
    const helpArgsSchema = z.object({});
  • Registers the helpTool into the central toolRegistry array, making it available for execution.
    toolRegistry.push( askGeminiTool, pingTool, helpTool, brainstormTool, fetchChunkTool, timeoutTestTool );

Other Tools

Related Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/jamubc/gemini-mcp-tool'

If you have feedback or need assistance with the MCP directory API, please join our Discord server