Skip to main content
Glama
orzcls

Gemini CLI MCP Server

by orzcls

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

NameRequiredDescriptionDefault

No arguments

Input Schema (JSON Schema)

{ "properties": {}, "required": [], "type": "object" }

Implementation Reference

  • 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" }] };
  • 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: [] } },
  • Registration of all tools via the ListToolsRequestHandler, which returns the tools array containing the 'Help' tool definition.
    server.setRequestHandler(ListToolsRequestSchema, async () => { return { tools }; });

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/orzcls/gemini-mcp-tool-windows-fixed'

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