본문 바로가기

자연어 명령2

728x90
코딩 도구도 AI 시대! Claude Code vs Copilot vs Aider – 6종 비교 Claude Code 워크플로우 $claude-code>Python으로 웹 스크래퍼 만들어줘>requirements.txt도 생성해줘>에러 처리 로직 추가해줘분석 중... █→ ClaudeAI Agent→생성된 코드# main.pyimport requestsfrom bs4 import BeautifulSoupdef scrape_website(url): try: response = requests.get(url) response.raise_for_status() return BeautifulSoup(response.content) except Exception as e: print(f"오류: {e}")# requirements.txtr.. 2025. 6. 7.
브라우저도 AI에게 맡기세요! Playwright MCP로 진화한 웹 탐색 자동화 Playwright MCP 서버는 AI 에이전트나 자연어 기반 자동화 툴이 브라우저를 제어할 수 있도록 해주는 MCP(Model Context Protocol) 서버입니다.Playwright 기반 브라우저 자동화 기능을 자연어 명령으로 실행할 수 있게 중간 브릿지 역할을 수행합니다.Claude Desktop, Cursor, VS Code 등과 함께 활용되며 LLM(대형 언어 모델) 기반 브라우저 자동화를 가능하게 합니다.환경 구축 및 설치 방법1. Node.js 설치Playwright MCP 서버는 Node.js 기반으로 동작합니다.# Ubuntu/Debiancurl -fsSL https://deb.nodesource.com/setup_20.x | sudo -E bash -sudo apt install .. 2025. 6. 4.
728x90
728x90