-
Notifications
You must be signed in to change notification settings - Fork 1.8k
docs: Add Google Gemini CLI installation guide and integration #757
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Conversation
- Add comprehensive installation guide for Google Gemini CLI - Include Docker and binary configuration options - Add authentication setup for Gemini API and Vertex AI - Update main README.md to include Gemini CLI in installation guides - Update installation guides index with Gemini CLI entry and support matrix - Follow established documentation patterns and security best practices
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is awesome. For a gemini-cli
user that is just trying to get this MCP to work, this is very helpful.
Left a few thoughts on the command use and things.
# Install GitHub MCP Server in Google Gemini CLI | ||
|
||
## Prerequisites | ||
1. Google Gemini CLI installed (see [Installation Options](#installation-options)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
question: should a guide on installing gemini-cli
be in here? or just a link to the gemini-cli
github page for instructions?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good question! I've kept a brief installation section for user convenience (just the basic commands for npm, npx, and Homebrew) but added a link to the https://github.com/google-gemini/gemini-cli for more detailed installation options. This way users get the essentials quickly but can dive deeper if needed. What do you think of this approach?
|
||
1. **Check MCP server status**: | ||
```bash | ||
gemini-cli mcp status |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fix: i think the command is gemini
and not gemini-cli
.
also, there is no gemini mcp status
command. the closest is gemini --prompt /mcp list
.
for the tools a gemini --prompt /tools
this is true for examples below. you'll need the --prompt
flag.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oups, this was my mistake. I am sorry for this and thank you for catching it. I will fix it below with a new commit.
✅ Changed all gemini-cli commands to gemini
✅ Fixed gemini mcp status
to gemini --prompt /mcp list
✅ Fixed gemini mcp list-tools
to gemini --prompt /tools
✅ Added --prompt
flags where needed throughout the examples
- Replace all 'gemini-cli' commands with correct 'gemini' syntax - Fix verification commands to use '/mcp list' and '/tools' prompts - Add httpUrl remote server method as primary configuration option - Update config file paths from settings.json to config.json - Correct npx installation command syntax - Add link to official Gemini CLI documentation Addresses feedback from soisyourface in PR review.
|
Closes:
#756