Gemini Kit
🚀 19 AI Agents + 44 Commands for Gemini CLI - Code 10x faster with auto planning, testing, review & security
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
Maintainer
Works with
Installation
Manual Installation
npx gemini-kitConfiguration
Configuration Details
claude_desktop_config.json
Performance
Response Metrics
Resource Usage
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
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 loginClone 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-kitInstall 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 buildRegister the extension with Gemini CLI
Link the built extension so the Gemini CLI loads it on startup.
gemini extensions link $(pwd)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
/statusAdd 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.
Gemini Kit Alternatives — Similar Coding Agents Servers
Looking for alternatives to Gemini Kit? Here are other popular coding agents servers you can use with Claude, Cursor, and VS Code.
Dify
★ 142.2kProduction-ready platform for agentic workflow development.
Ruflo
★ 54.0k🌊 The leading agent orchestration platform for Claude. Deploy intelligent multi-agent swarms, coordinate autonomous workflows, and build conversational AI systems. Features enterprise-grade architecture, self-learning swarm intelligence, RAG integrat
Goose
★ 45.7kan open source, extensible AI agent that goes beyond code suggestions - install, execute, edit, and test with any LLM
Antigravity Awesome Skills
★ 38.3kInstallable GitHub library of 1,400+ agentic skills for Claude Code, Cursor, Codex CLI, Gemini CLI, Antigravity, and more. Includes installer CLI, bundles, workflows, and official/community skill collections.
AgentScope
★ 25.5kBuild and run agents you can see, understand and trust.
Serena
★ 24.5kA coding agent toolkit that provides IDE-like semantic code retrieval and editing tools, enabling LLMs to efficiently navigate and modify codebases using symbol-level operations instead of basic file reading and string replacements.
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.
Set Up Gemini Kit in Your Editor
Choose your AI client for step-by-step setup instructions.
Quick Config Preview
Add this to your claude_desktop_config.json or .cursor/mcp.json
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.