1. MySQL MCP

claude mcp add mysql -e MYSQL_HOST="127.0.0.1" -e MYSQL_PORT="3306" -e MYSQL_USER="root" -e MYSQL_PASS="rootpass" -e MYSQL_DB="testdb" -- npx -y @benborla29/[email protected]

https://github.com/benborla/mcp-server-mysql

claude mcp add notion <https://mcp.notion.com/mcp>
claude mcp add --transport http notion <https://mcp.notion.com/mcp>

claude mcp add --transport http notion <https://mcp.notion.com/mcp>
<https://github.com/makenotion/notion-mcp-server>

2.

wsl --list --verbose
wsl --unregister debian_claude
PS C:\\Users\\lapeu> irm <https://claude.ai/install.ps1> | iex
Setting up Claude Code...

Claude configuration file not found at: C:\\Users\\lapeu\\.claude.json
A backup file exists at: C:\\Users\\lapeu\\.claude.json.backup
You can manually restore it by running: cp "C:\\Users\\lapeu\\.claude.json.backup" "C:\\Users\\lapeu\\.claude.json"

Claude configuration file not found at: C:\\Users\\lapeu\\.claude.json
A backup file exists at: C:\\Users\\lapeu\\.claude.json.backup
You can manually restore it by running: cp "C:\\Users\\lapeu\\.claude.json.backup" "C:\\Users\\lapeu\\.claude.json"

Claude configuration file not found at: C:\\Users\\lapeu\\.claude.json
A backup file exists at: C:\\Users\\lapeu\\.claude.json.backup
You can manually restore it by running: cp "C:\\Users\\lapeu\\.claude.json.backup" "C:\\Users\\lapeu\\.claude.json"

Claude configuration file not found at: C:\\Users\\lapeu\\.claude.json
A backup file exists at: C:\\Users\\lapeu\\.claude.json.backup
You can manually restore it by running: cp "C:\\Users\\lapeu\\.claude.json.backup" "C:\\Users\\lapeu\\.claude.json"

Claude configuration file not found at: C:\\Users\\lapeu\\.claude.json
A backup file exists at: C:\\Users\\lapeu\\.claude.json.backup
You can manually restore it by running: cp "C:\\Users\\lapeu\\.claude.json.backup" "C:\\Users\\lapeu\\.claude.json"

Claude configuration file not found at: C:\\Users\\lapeu\\.claude.json
A backup file exists at: C:\\Users\\lapeu\\.claude.json.backup
You can manually restore it by running: cp "C:\\Users\\lapeu\\.claude.json.backup" "C:\\Users\\lapeu\\.claude.json"

√ Claude Code successfully installed!

  Version: 2.0.67

  Location: C:\\Users\\lapeu\\.local\\bin\\claude.exe

  Next: Run claude --help to get started

‼ Setup notes:
  • installMethod is native, but claude command not found at C:\\Users\\lapeu\\.local\\bin\\claude.exe
  • Native installation exists but C:\\Users\\lapeu\\.local\\bin is not in your PATH. Add it by opening: System Properties →
   Environment Variables → Edit User PATH → New → Add the path above. Then restart your terminal.

✅ Installation complete!

✅ Installation complete!

PS C:\\Users\\lapeu> claude --help
claude : 'claude' 용어가 cmdlet, 함수, 스크립트 파일 또는 실행할 수 있는 프로그램 이름으로 인식되지 않습니다. 이름이 정확한지 확인하고 경로가 포함된 경우
경로가 올바른지 검증한 다음 다시 시도하십시오.
위치 줄:1 문자:1
+ claude --help
+ ~~~~~~
    + CategoryInfo          : ObjectNotFound: (claude:String) [], ParentContainsErrorRecordException
    + FullyQualifiedErrorId : CommandNotFoundException
claude-code-guide(Check Claude Code uninstall) Haiku 4.5
  ⎿  Done (4 tool uses · 29.6k tokens · 24s)

● WSL에서 Claude Code 완전 제거 방법

  1단계: 설치 방법 확인 (선택)

  claude doctor

  2단계: Claude Code 바이너리 제거

  일반 설치(bash 스크립트)로 설치했다면:
  rm -f ~/.local/bin/claude
  rm -rf ~/.claude-code

  Homebrew로 설치했다면:
  brew uninstall --cask claude-code

  NPM으로 설치했다면:
  npm uninstall -g @anthropic-ai/claude-code

  3단계: 설정 및 데이터 완전 삭제

  사용자 레벨 설정/데이터 삭제:
  rm -rf ~/.claude
  rm -f ~/.claude.json

  ⚠️ 주의:
  - ~/.claude/ - 모든 설정, 메모리 파일, 세션 히스토리 포함
  - ~/.claude.json - OAuth 인증 정보, MCP 서버 설정 포함

  프로젝트별 설정 삭제 (각 프로젝트 디렉토리에서):
  cd /path/to/your/project
  rm -rf .claude
  rm -f .mcp.json

  4단계: 삭제 확인

  which claude  # "not found" 출력되어야 함
  ls ~/.claude  # "No such file or directory" 출력되어야 함

  완전 삭제 스크립트 (한번에 실행)

  # Claude Code 바이너리 삭제
  rm -f ~/.local/bin/claude
  rm -rf ~/.claude-code

  # 사용자 설정 및 데이터 삭제
  rm -rf ~/.claude
  rm -f ~/.claude.json

  # 확인
  echo "=== 삭제 확인 ==="
  which claude 2>&1 || echo "✓ claude 바이너리 삭제됨"
  [ ! -d ~/.claude ] && echo "✓ ~/.claude 디렉토리 삭제됨"
  [ ! -f ~/.claude.json ] && echo "✓ ~/.claude.json 파일 삭제됨"

  제거되는 항목 정리

  사용자 레벨

  - ~/.local/bin/claude - 실행 파일 심볼릭 링크
  - ~/.claude-code/ - 바이너리 디렉토리
  - ~/.claude/ - 설정, CLAUDE.md, agents/, 세션 캐시
  - ~/.claude.json - OAuth 세션, MCP 서버 설정, 테마

  프로젝트 레벨

  - .claude/ - 프로젝트 설정, 메모리 파일
  - .mcp.json - 프로젝트 MCP 서버 설정

  이후 Windows 네이티브 설치

  WSL 정리 후 Windows PowerShell에서:
  irm <https://claude.ai/install.ps1> | iex

  이렇게 하면 WSL의 Claude Code는 완전히 제거되고, Windows 네이티브로 깔끔하게 새로 시작할 수 있습니다!
curl -fsSL <https://claude.ai/install.cmd> -o install.cmd && install.cmd && del install.cmd