Code Review MCP Server

# LLM Provider Configuration # Set which provider to use: OPEN_AI, ANTHROPIC, or GEMINI LLM_PROVIDER=OPEN_AI # API Keys for different providers (only add the key for your chosen provider) # --- OpenAI --- # Format: sk-xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx # Get from: https://platform.openai.com/api-keys OPENAI_API_KEY=your-openai-api-key # --- Anthropic --- # Format: sk-ant-xxxxx-xxxxxxxxxxxxxxxxxxxxxxxxxxxx # Get from: https://console.anthropic.com/settings/keys # ANTHROPIC_API_KEY=your-anthropic-api-key # --- Gemini --- # Format: No specific format, typically alphanumeric # Get from: https://aistudio.google.com/app/apikey # GEMINI_API_KEY=your-gemini-api-key # Optional: Specify models for each provider # If not provided, defaults will be used: # - OPEN_AI: gpt-4o # - ANTHROPIC: claude-3-opus-20240307 # - GEMINI: gemini-1.5-pro # OPENAI_MODEL=gpt-4-turbo # ANTHROPIC_MODEL=claude-3-sonnet-20240229 # GEMINI_MODEL=gemini-1.5-flash-preview # Repomix configuration # Optional: Set parameters for Repomix # REPOMIX_MAX_FILES=100 # REPOMIX_DEFAULT_FORMAT=plain