fix: Address Gemini Code Assist review feedback

- Repository URL consistency: Updated all references to BeehiveInnovations/zen-mcp-server format
- Documentation clarity: Fixed misleading table headers and improved Docker configuration examples
- File conventions: Added missing final newlines to all files
- Configuration consistency: Clarified API key placeholder format in documentation

Addresses all points raised in PR #17 review by Gemini Code Assist.

🤖 Generated with Claude Code

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
Patryk Ciechanski
2025-06-12 15:38:01 +02:00
parent f3cafa80a8
commit e37cb71da2
34 changed files with 106 additions and 78 deletions

View File

@@ -8,7 +8,7 @@ This guide covers all configuration options for the Gemini MCP Server.
| Variable | Description | Example |
|----------|-------------|---------|
| `GEMINI_API_KEY` | Your Gemini API key from Google AI Studio | `AIzaSyC...` |
| `GEMINI_API_KEY` | Your Gemini API key from Google AI Studio (replace entire placeholder) | `AIzaSyC_your_actual_key_here` |
### Optional Configuration
@@ -43,10 +43,10 @@ Add to your Claude Desktop config file:
"args": [
"run", "--rm", "-i",
"-e", "GEMINI_API_KEY",
"ghcr.io/patrykiti/gemini-mcp-server:latest"
"ghcr.io/beehiveinnovations/zen-mcp-server:latest"
],
"env": {
"GEMINI_API_KEY": "your-gemini-api-key-here"
"GEMINI_API_KEY": "AIzaSyC_your_actual_gemini_api_key_here"
}
}
}
@@ -75,10 +75,10 @@ Add to your Claude Desktop config file:
"args": [
"run", "--rm", "-i",
"-e", "GEMINI_API_KEY",
"ghcr.io/patrykiti/gemini-mcp-server:v1.2.0"
"ghcr.io/beehiveinnovations/zen-mcp-server:v1.2.0"
],
"env": {
"GEMINI_API_KEY": "your-gemini-api-key-here"
"GEMINI_API_KEY": "AIzaSyC_your_actual_gemini_api_key_here"
}
}
}
@@ -288,4 +288,5 @@ services:
**See Also:**
- [Installation Guide](installation.md)
- [Troubleshooting Guide](troubleshooting.md)
- [Troubleshooting Guide](troubleshooting.md)