Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Schema
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| consult_gemini | Send a query directly to Gemini CLI.
This is the core function - a direct bridge between Claude and Gemini.
No caching, no sessions, no complexity. Just execute and return.
Args:
query: The question or prompt to send to Gemini
directory: Working directory (required)
model: Optional model name (flash, pro, etc.)
Returns:
Gemini's response |
| consult_gemini_with_files | Send a query to Gemini CLI with file attachments.
Files are read and concatenated into the prompt. Simple and direct.
Args:
query: The question or prompt to send to Gemini
directory: Working directory (required)
files: List of file paths to attach (relative to directory)
model: Optional model name (flash, pro, etc.)
Returns:
Gemini's response with file context |