Gemini Daily MCP Server (Compressed)
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| LOG_LEVEL | No | Logging level for the server | info |
| MAX_SESSIONS | No | Maximum number of sessions to maintain | 100 |
| GEMINI_ENABLED | No | Enable or disable Gemini functionality | true |
| GOOGLE_API_KEY | No | Google API key for Gemini CLI authentication | |
| SESSION_TTL_HOURS | No | Session time-to-live in hours | 24 |
| GEMINI_CLI_COMMAND | No | The command to invoke Gemini CLI | gemini |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| geminiD | Execute Gemini CLI. Use help for details |
| pingC | Test connection |
| helpC | Get detailed documentation |
| listSessionsB | List active sessions |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 4 tools
Each tool has a clearly distinct purpose: gemini executes CLI commands, help provides documentation, listSessions shows active sessions, and ping tests connectivity. There is no overlap or ambiguity between these functions.
Naming is inconsistent: gemini and ping use lowercase, help is lowercase but a generic verb, and listSessions uses camelCase. There is no uniform verb_noun pattern or consistent casing style across the set.
With 4 tools, this is well-scoped for a server focused on Gemini CLI interaction and session management. Each tool serves a clear, necessary function without bloat or redundancy.
For a Gemini CLI server, core operations like execution, help, and session listing are covered, but there are notable gaps such as creating or managing sessions, handling specific Gemini commands directly, or error handling tools. The surface is functional but limited.