Rebranding, refactoring, renaming, cleanup, updated docs

This commit is contained in:
Fahad
2025-06-12 10:40:43 +04:00
parent 9a55ca8898
commit fb66825bf6
55 changed files with 1048 additions and 1474 deletions

View File

@@ -1,18 +1,18 @@
{
"comment": "Docker configuration that mounts your home directory",
"comment2": "Update paths: /path/to/gemini-mcp-server/.env and /Users/your-username",
"comment2": "Update paths: /path/to/zen-mcp-server/.env and /Users/your-username",
"comment3": "The container auto-detects /workspace as sandbox from WORKSPACE_ROOT",
"mcpServers": {
"gemini": {
"zen": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--env-file", "/path/to/gemini-mcp-server/.env",
"--env-file", "/path/to/zen-mcp-server/.env",
"-e", "WORKSPACE_ROOT=/Users/your-username",
"-v", "/Users/your-username:/workspace:ro",
"gemini-mcp-server:latest"
"zen-mcp-server:latest"
]
}
}

View File

@@ -1,13 +1,17 @@
{
"comment": "Traditional macOS/Linux configuration (non-Docker)",
"comment2": "Replace YOUR_USERNAME with your actual username",
"comment3": "This gives access to all files under your home directory",
"comment": "macOS configuration using Docker",
"comment2": "Ensure Docker is running and containers are started",
"comment3": "Run './setup-docker.sh' first to set up the environment",
"mcpServers": {
"gemini": {
"command": "/Users/YOUR_USERNAME/gemini-mcp-server/run_gemini.sh",
"env": {
"GEMINI_API_KEY": "your-gemini-api-key-here"
}
"zen": {
"command": "docker",
"args": [
"exec",
"-i",
"zen-mcp-server",
"python",
"server.py"
]
}
}
}

View File

@@ -1,14 +1,18 @@
{
"comment": "Windows configuration using WSL (Windows Subsystem for Linux)",
"comment2": "Replace YOUR_WSL_USERNAME with your WSL username",
"comment3": "Make sure the server is installed in your WSL environment",
"comment": "Windows configuration using WSL with Docker",
"comment2": "Ensure Docker Desktop is running and WSL integration is enabled",
"comment3": "Run './setup-docker.sh' in WSL first to set up the environment",
"mcpServers": {
"gemini": {
"zen": {
"command": "wsl.exe",
"args": ["/home/YOUR_WSL_USERNAME/gemini-mcp-server/run_gemini.sh"],
"env": {
"GEMINI_API_KEY": "your-gemini-api-key-here"
}
"args": [
"docker",
"exec",
"-i",
"zen-mcp-server",
"python",
"server.py"
]
}
}
}