5. Q CLI 기반 MCP 구성하기 2
Update : 2025.08.06
1. 브라우저 접근 (Playwright + Chrome)
1.1 현재 채팅 세션 종료 및 Chrome 설치
/quitsudo dnf install -y https://dl.google.com/linux/direct/google-chrome-stable_current_x86_64.rpm1.2 mcp.json 파일 업데이트
code-server ~/.aws/amazonq/mcp.json{
"mcpServers": {
"awslabs.eks-mcp-server": {
"command": "uvx",
"args": [
"awslabs.eks-mcp-server@latest",
"--allow-write",
"--allow-sensitive-data-access"
],
"env": {
"FASTMCP_LOG_LEVEL": "ERROR"
},
"autoApprove": [],
"disabled": false
},
"playwright": {
"command": "npx",
"args": [
"@playwright/mcp@latest",
"--headless",
"--executable-path",
"/usr/bin/google-chrome-stable"
]
}
}
}1.3 CLI 채팅 세션 재시작
1.4 사용 가능한 도구 목록 확인
2. 웹 탐색 및 요약 요청 예시
Last updated