WIP - communication memory
This commit is contained in:
@@ -122,7 +122,7 @@ nano .env
|
|||||||
**Or use Claude Code CLI (Recommended):**
|
**Or use Claude Code CLI (Recommended):**
|
||||||
```bash
|
```bash
|
||||||
# Add the MCP server directly via Claude Code CLI
|
# Add the MCP server directly via Claude Code CLI
|
||||||
claude mcp add gemini docker exec -i gemini-mcp-server-gemini-mcp-1
|
claude mcp add gemini -s user -- docker exec -i gemini-mcp-server python server.py
|
||||||
|
|
||||||
# List your MCP servers to verify
|
# List your MCP servers to verify
|
||||||
claude mcp list
|
claude mcp list
|
||||||
@@ -143,7 +143,9 @@ The setup script shows you the exact configuration. It looks like this:
|
|||||||
"args": [
|
"args": [
|
||||||
"exec",
|
"exec",
|
||||||
"-i",
|
"-i",
|
||||||
"gemini-mcp-server-gemini-mcp-1"
|
"gemini-mcp-server",
|
||||||
|
"python",
|
||||||
|
"server.py"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
services:
|
services:
|
||||||
redis:
|
redis:
|
||||||
image: redis:7-alpine
|
image: redis:7-alpine
|
||||||
|
container_name: gemini-mcp-redis
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
ports:
|
ports:
|
||||||
- "6379:6379"
|
- "6379:6379"
|
||||||
@@ -21,6 +22,8 @@ services:
|
|||||||
|
|
||||||
gemini-mcp:
|
gemini-mcp:
|
||||||
build: .
|
build: .
|
||||||
|
image: gemini-mcp-server:latest
|
||||||
|
container_name: gemini-mcp-server
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
depends_on:
|
depends_on:
|
||||||
redis:
|
redis:
|
||||||
@@ -33,6 +36,7 @@ services:
|
|||||||
- ${HOME:-/tmp}:/workspace:ro
|
- ${HOME:-/tmp}:/workspace:ro
|
||||||
stdin_open: true
|
stdin_open: true
|
||||||
tty: true
|
tty: true
|
||||||
|
command: ["sh", "-c", "while true; do sleep 86400; done"]
|
||||||
|
|
||||||
volumes:
|
volumes:
|
||||||
redis_data:
|
redis_data:
|
||||||
@@ -1,5 +1,8 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
# Exit on any error, undefined variables, and pipe failures
|
||||||
|
set -euo pipefail
|
||||||
|
|
||||||
# Modern Docker setup script for Gemini MCP Server with Redis
|
# Modern Docker setup script for Gemini MCP Server with Redis
|
||||||
# This script sets up the complete Docker environment including Redis for conversation threading
|
# This script sets up the complete Docker environment including Redis for conversation threading
|
||||||
|
|
||||||
@@ -71,7 +74,35 @@ echo ""
|
|||||||
|
|
||||||
# Stop and remove existing containers
|
# Stop and remove existing containers
|
||||||
echo " - Stopping existing containers..."
|
echo " - Stopping existing containers..."
|
||||||
$COMPOSE_CMD down --remove-orphans >/dev/null 2>&1
|
$COMPOSE_CMD down --remove-orphans >/dev/null 2>&1 || true
|
||||||
|
|
||||||
|
# Clean up any old containers with different naming patterns
|
||||||
|
OLD_CONTAINERS_FOUND=false
|
||||||
|
|
||||||
|
# Check for old Gemini MCP container
|
||||||
|
if docker ps -a --format "{{.Names}}" | grep -q "^gemini-mcp-server-gemini-mcp-1$" 2>/dev/null || false; then
|
||||||
|
OLD_CONTAINERS_FOUND=true
|
||||||
|
echo " - Cleaning up old container: gemini-mcp-server-gemini-mcp-1"
|
||||||
|
docker stop gemini-mcp-server-gemini-mcp-1 >/dev/null 2>&1 || true
|
||||||
|
docker rm gemini-mcp-server-gemini-mcp-1 >/dev/null 2>&1 || true
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Check for old Redis container
|
||||||
|
if docker ps -a --format "{{.Names}}" | grep -q "^gemini-mcp-server-redis-1$" 2>/dev/null || false; then
|
||||||
|
OLD_CONTAINERS_FOUND=true
|
||||||
|
echo " - Cleaning up old container: gemini-mcp-server-redis-1"
|
||||||
|
docker stop gemini-mcp-server-redis-1 >/dev/null 2>&1 || true
|
||||||
|
docker rm gemini-mcp-server-redis-1 >/dev/null 2>&1 || true
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Check for old image
|
||||||
|
if docker images --format "{{.Repository}}:{{.Tag}}" | grep -q "^gemini-mcp-server-gemini-mcp:latest$" 2>/dev/null || false; then
|
||||||
|
OLD_CONTAINERS_FOUND=true
|
||||||
|
echo " - Cleaning up old image: gemini-mcp-server-gemini-mcp:latest"
|
||||||
|
docker rmi gemini-mcp-server-gemini-mcp:latest >/dev/null 2>&1 || true
|
||||||
|
fi
|
||||||
|
|
||||||
|
# Only show cleanup messages if something was actually cleaned up
|
||||||
|
|
||||||
# Build and start services
|
# Build and start services
|
||||||
echo " - Building Gemini MCP Server image..."
|
echo " - Building Gemini MCP Server image..."
|
||||||
@@ -95,7 +126,7 @@ echo " - Waiting for Redis to be ready..."
|
|||||||
sleep 3
|
sleep 3
|
||||||
|
|
||||||
# Check service status
|
# Check service status
|
||||||
if $COMPOSE_CMD ps --format table | grep -q "Up"; then
|
if $COMPOSE_CMD ps --format table | grep -q "Up" 2>/dev/null || false; then
|
||||||
echo "✅ All services are running!"
|
echo "✅ All services are running!"
|
||||||
else
|
else
|
||||||
echo "⚠️ Some services may not be running. Check with: $COMPOSE_CMD ps"
|
echo "⚠️ Some services may not be running. Check with: $COMPOSE_CMD ps"
|
||||||
@@ -107,7 +138,7 @@ $COMPOSE_CMD ps --format table
|
|||||||
|
|
||||||
echo ""
|
echo ""
|
||||||
echo "🔄 Next steps:"
|
echo "🔄 Next steps:"
|
||||||
if grep -q "your-gemini-api-key-here" .env; then
|
if grep -q "your-gemini-api-key-here" .env 2>/dev/null || false; then
|
||||||
echo "1. Edit .env and replace 'your-gemini-api-key-here' with your actual Gemini API key"
|
echo "1. Edit .env and replace 'your-gemini-api-key-here' with your actual Gemini API key"
|
||||||
echo "2. Restart services: $COMPOSE_CMD restart"
|
echo "2. Restart services: $COMPOSE_CMD restart"
|
||||||
echo "3. Copy the configuration below to your Claude Desktop config:"
|
echo "3. Copy the configuration below to your Claude Desktop config:"
|
||||||
@@ -124,7 +155,9 @@ echo " \"command\": \"docker\","
|
|||||||
echo " \"args\": ["
|
echo " \"args\": ["
|
||||||
echo " \"exec\","
|
echo " \"exec\","
|
||||||
echo " \"-i\","
|
echo " \"-i\","
|
||||||
echo " \"gemini-mcp-server-gemini-mcp-1\""
|
echo " \"gemini-mcp-server\","
|
||||||
|
echo " \"python\","
|
||||||
|
echo " \"server.py\""
|
||||||
echo " ]"
|
echo " ]"
|
||||||
echo " }"
|
echo " }"
|
||||||
echo " }"
|
echo " }"
|
||||||
@@ -134,7 +167,7 @@ echo ""
|
|||||||
|
|
||||||
echo "📁 Config file locations:"
|
echo "📁 Config file locations:"
|
||||||
echo " macOS: ~/Library/Application Support/Claude/claude_desktop_config.json"
|
echo " macOS: ~/Library/Application Support/Claude/claude_desktop_config.json"
|
||||||
echo " Windows (WSL): /mnt/c/Users/USERNAME/AppData/Roaming/Claude/claude_desktop_config.json"
|
echo ' Windows (WSL): /mnt/c/Users/USERNAME/AppData/Roaming/Claude/claude_desktop_config.json'
|
||||||
echo ""
|
echo ""
|
||||||
|
|
||||||
echo "🔧 Useful commands:"
|
echo "🔧 Useful commands:"
|
||||||
|
|||||||
@@ -389,6 +389,12 @@ If any of these would strengthen your analysis, specify what Claude should searc
|
|||||||
follow_up_instructions = get_follow_up_instructions(0) # New conversation, turn 0
|
follow_up_instructions = get_follow_up_instructions(0) # New conversation, turn 0
|
||||||
prompt = f"{prompt}\n\n{follow_up_instructions}"
|
prompt = f"{prompt}\n\n{follow_up_instructions}"
|
||||||
logging.debug(f"Added follow-up instructions for new {self.name} conversation")
|
logging.debug(f"Added follow-up instructions for new {self.name} conversation")
|
||||||
|
# Also log to file for debugging MCP issues
|
||||||
|
try:
|
||||||
|
with open('/tmp/gemini_debug.log', 'a') as f:
|
||||||
|
f.write(f"[{self.name}] Added follow-up instructions for new conversation\n")
|
||||||
|
except Exception:
|
||||||
|
pass
|
||||||
else:
|
else:
|
||||||
import logging
|
import logging
|
||||||
logging.debug(f"Continuing {self.name} conversation with thread {continuation_id}")
|
logging.debug(f"Continuing {self.name} conversation with thread {continuation_id}")
|
||||||
|
|||||||
Reference in New Issue
Block a user