Gemini Kit

v1.0.0Coding Agentsstable

🚀 19 AI Agents + 44 Commands for Gemini CLI - Code 10x faster with auto planning, testing, review & security

ai-agentscoding-assistantdeveloper-toolsgemini-cligemini-extension
Share:
350
Stars
0
Downloads
0
Weekly
0/5

What is Gemini Kit?

Gemini Kit is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to 🚀 19 ai agents + 44 commands for gemini cli - code 10x faster with auto planning, testing, review & security

🚀 19 AI Agents + 44 Commands for Gemini CLI - Code 10x faster with auto planning, testing, review & security

This server falls under the Coding Agents category on MCPgee, the world's largest MCP server directory with 33,000+ servers.

Features

  • 🚀 19 AI Agents + 44 Commands for Gemini CLI - Code 10x faste

Use Cases

Code 10x faster with Gemini CLI.
Auto-generate tests and reviews.
Perform security analysis.
nth5693

Maintainer

LicenseMIT
Languageshell
Versionv1.0.0
UpdatedMay 21, 2026
Statushealthy
Maintenanceactive

Works with

ClaudeOpenAIwindowsmacoslinux

Installation

Manual Installation

npx gemini-kit

Configuration

Configuration Details

Config File

claude_desktop_config.json

Performance

Response Metrics

Response Time< 200ms
ThroughputMedium

Resource Usage

Memory UsageLow
CPU UsageLow

How to Set Up and Use Gemini Kit

Gemini Kit is an extension for the Gemini CLI that adds 27 specialized AI agents and 45 development commands, turning Gemini into a full development copilot with automated planning, testing, code review, and security analysis. It includes real-time secret detection that blocks credentials from being written to code, auto-checkpointing via Git before any destructive changes, and a learning system that retains your feedback across sessions. Teams use it to enforce consistent coding standards, automate repetitive PR workflows, and add structured multi-agent delegation on top of the Gemini CLI.

Prerequisites

  • Node.js 18.0 or newer
  • Git 2.0 or newer
  • Gemini CLI installed and authenticated with a Google account (no separate API key required)
  • An MCP client that supports the Gemini CLI extension format
1

Install and authenticate the Gemini CLI

Gemini Kit runs as an extension of the Gemini CLI. Install and authenticate the CLI first before adding the extension.

npm install -g @google/gemini-cli
gemini auth login
2

Clone Gemini Kit into the extensions directory

Clone the repository into the ~/.gemini/extensions/ directory so the Gemini CLI can discover it automatically.

git clone https://github.com/nth5693/gemini-kit.git ~/.gemini/extensions/gemini-kit
3

Install dependencies and build

Navigate into the cloned directory, install Node.js dependencies, and compile the TypeScript source.

cd ~/.gemini/extensions/gemini-kit
npm install && npm run build
4

Register the extension with Gemini CLI

Link the built extension so the Gemini CLI loads it on startup.

gemini extensions link $(pwd)
5

Verify the extension is active

Start the Gemini CLI and confirm that gemini-kit commands and agents are available. The /plan and /review commands should be listed.

gemini
/status
6

Add Gemini Kit as an MCP server (optional)

To expose gemini-kit MCP tools (checkpoint management, codebase indexing, GitHub PR creation) to another MCP client such as Claude Desktop, add an stdio server entry pointing to the built index.js.

{
  "mcpServers": {
    "gemini-kit": {
      "command": "node",
      "args": ["${HOME}/.gemini/extensions/gemini-kit/dist/index.js"]
    }
  }
}

Gemini Kit Examples

Client configuration

MCP client config for exposing gemini-kit tools via stdio. Adjust the path to match where you cloned the extension.

{
  "mcpServers": {
    "gemini-kit": {
      "command": "node",
      "args": ["/Users/yourname/.gemini/extensions/gemini-kit/dist/index.js"]
    }
  }
}

Prompts to try

Commands and prompts available inside the Gemini CLI with the extension active.

- "/plan Implement a REST API for user authentication with JWT tokens"
- "/review Check this PR for security vulnerabilities and logic errors"
- "/test Generate unit tests for the UserService class"
- "Use kit_index_codebase to index the project, then find all places where we handle database connections"
- "Create a checkpoint before refactoring, then use kit_github_create_pr to open a PR"

Troubleshooting Gemini Kit

Extension not found after linking

Make sure 'npm run build' completed without errors and that the dist/ directory was created. Re-run 'gemini extensions link $(pwd)' from inside the ~/.gemini/extensions/gemini-kit directory.

Secret detection blocks valid strings

Gemini Kit scans for 30+ secret patterns before writing code. If a false positive occurs, review which pattern matched and rename the variable or move sensitive values to environment variables to avoid the pattern.

Node.js version incompatibility

Gemini Kit requires Node.js 18+. Run 'node --version' to check. Use nvm or fnm to switch versions: 'nvm install 18 && nvm use 18'.

Frequently Asked Questions about Gemini Kit

What is Gemini Kit?

Gemini Kit is a Model Context Protocol (MCP) server that 🚀 19 ai agents + 44 commands for gemini cli - code 10x faster with auto planning, testing, review & security It connects AI assistants to external tools and data sources through a standardized interface.

How do I install Gemini Kit?

Follow the installation instructions on the Gemini Kit GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.

Which AI clients work with Gemini Kit?

Gemini Kit works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.

Is Gemini Kit free to use?

Yes, Gemini Kit is open source and available under the MIT license. You can use it freely in both personal and commercial projects.

Browse More Coding Agents MCP Servers

Explore all coding agents servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.

Quick Config Preview

{ "mcpServers": { "gemini-kit": { "command": "npx", "args": ["-y", "gemini-kit"] } } }

Add this to your claude_desktop_config.json or .cursor/mcp.json

Read the full setup guide →

Ready to use Gemini Kit?

Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.

33,000+ ServersFree & Open SourceStep-by-Step Guides