Skip to main content
Glama
cainmaila

gemini-cli-mcp

by cainmaila

πŸ€– Gemini CLI MCP Server

Seamless AI-to-AI Delegation via Local Gemini CLI

npm version License: MIT Node.js Version

English Β· 繁體中文


🌟 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 executeTask for direct answers, or drop down to executePrompt for precise control.

  • 🎨 Native Image Generation: Harnesses your local nanobanana extension 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-mcp

The 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-mcp

Client 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

GEMINI_CLI_PATH

Path to the Gemini executable

gemini

GEMINI_PROMPT_FLAG

The flag used for passing prompts

-p

GEMINI_MODEL_FLAG

The flag used to specify the model

--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.

A
license - permissive license
-
quality - not tested
D
maintenance

Maintenance

–Maintainers
–Response time
–Release cycle
–Releases (12mo)
Commit activity

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

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