# Create project directory
uv init mcp-client
cd mcp-client
# Create virtual environment
uv venv
# Activate virtual environment (Windows PowerShell)
.venv\Scripts\Activate.ps1uv add google-generativeai mcp python-dotenv# Remove boilerplate files
Remove-Item .\main.py
# Create main file
ni .\client.py(※ ni는 PowerShell의 New-Item 줄임말)
# Create .env file
ni .\.env.env 파일을 열어 다음을 작성:
GEMINI_API_KEY=<your key here>echo ".env" >> .gitignoreni .\mcp_server_config.jsonpython client3.py