gemini-cli-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@gemini-cli-mcpGenerate an image of a cat wearing a hat"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
π€ Gemini CLI MCP Server
Seamless AI-to-AI Delegation via Local Gemini CLI
π Why Gemini CLI MCP?
gemini-cli-mcp is an advanced Model Context Protocol (MCP) server that empowers your AI assistants by delegating complex tasks to your locally installed Gemini CLI.
Rather than collapsing failures into generic errors, this server returns structured results along with execution metadata, making it an essential tool for robust AI-to-AI handoffs and deep debugging.
β¨ Key Features
π Zero-Friction Auth: Transparently utilizes your existing local Gemini CLI setup and credentials.
π Standard MCP Ready: Runs headless over
stdio, effortlessly integrating with standard MCP client setups.π οΈ Task-Oriented & Flexible: Choose
executeTaskfor direct answers, or drop down toexecutePromptfor precise control.π¨ Native Image Generation: Harnesses your local
nanobananaextension to generate and retrieve images seamlessly.π Environment Inspection: Instantly discover available commands, extensions, skills, and MCP servers on the local machine.
Related MCP server: Gemini Agent MCP Server
π¦ Installation
For normal usage, install the published package globally or run it through your package manager. Ensure you have Node.js 18.18+ installed along with a configured local Gemini CLI.
# npm
npm install -g @cainmaila/gemini-cli-mcp
# pnpm
pnpm add -g @cainmaila/gemini-cli-mcp
# one-off execution without a global install
npx -y @cainmaila/gemini-cli-mcpThe published package name is @cainmaila/gemini-cli-mcp, but the installed executable name is gemini-cli-mcp.
If you use pnpm add -g, make sure your MCP client can see your PNPM_HOME/global bin directory. Some desktop MCP clients do not inherit the same PATH as your interactive shell, which can make gemini-cli-mcp look missing even though the package is installed.
If you want to work on this repository itself instead of using the published package, use the local development flow in DEVELOPMENT.md.
π Quick Start & Usage
Running the Server
Since this is an MCP server, it is designed to communicate over stdio and should be launched by your MCP client.
gemini-cli-mcpClient Configuration Example
Add the following to your AI assistant's MCP configuration:
{
"mcpServers": {
"gemini-cli": {
"command": "gemini-cli-mcp"
}
}
}If your MCP client cannot resolve global binaries reliably, use one of these alternatives instead:
{
"mcpServers": {
"gemini-cli": {
"command": "npx",
"args": ["-y", "@cainmaila/gemini-cli-mcp"]
}
}
}{
"mcpServers": {
"gemini-cli": {
"command": "node",
"args": ["/absolute/path/to/installed/package/build/index.js"]
}
}
}Running gemini-cli-mcp directly in a terminal is only useful as a smoke test. It will wait for MCP traffic over stdio, so it may look idle until a client connects.
π οΈ Available Tools
Best for upstream AI systems. Hands off a task to the Gemini CLI and returns a ready-to-use answer. Auto-applies edit approvals when necessary!
Input Example:
{
"task": "Query today's weather in Taipei and provide a short summary.",
"expectedOutput": "Direct answer, no intro.",
"timeoutMs": 180000
}Output Example:
{
"answer": "...",
"ok": true,
"stdout": "...",
"stderr": "...",
"exitCode": 0,
"elapsedMs": 23053
}A lower-level interface designed for callers who demand exact prompt control.
Input Example:
{
"prompt": "Summarize the current repository",
"model": "gemini-2.5-pro",
"timeoutMs": 60000
}Output Example:
{
"ok": true,
"finalText": "...",
"stdout": "...",
"stderr": "",
"exitCode": 0,
"elapsedMs": 1532
}Flawless image-generation backed by the local nanobanana extension. Bypasses interactive prompts automatically!
Input Example:
{
"prompt": "a cute orange cat portrait, clean light background",
"count": 1,
"timeoutMs": 180000
}Output Example:
{
"ok": true,
"responseText": "/path/to/project/nanobanana-output/cat.png",
"imagePaths": ["/path/to/project/nanobanana-output/cat.png"],
"primaryImagePath": "/path/to/project/nanobanana-output/cat.png",
"exitCode": 0,
"elapsedMs": 12000
}Discover your AI environment's capabilities on the fly. Returns top-level commands, installed extensions, available skills, and configured MCP servers.
Input Example:
{
"includeModelReportedTools": true,
"timeoutMs": 60000
}βοΈ Environment Overrides
Tailor the server to your specific environment simply by setting these variables:
Variable | Description | Default |
| Path to the Gemini executable |
|
| The flag used for passing prompts |
|
| The flag used to specify the model |
|
π Notes & Contributing
Authentication: This server relies on your existing local Gemini CLI authentication.
Resilience: If the local CLI is missing or broken, you will receive structured failure detailsβnever a silent crash.
Want to build with us? Check out our developer guide in DEVELOPMENT.md.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/cainmaila/gemini-cli-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server