개발/Tools & Settings2025. 7. 10. 10:14Claude Code 401 Error

⎿ API Error: 401 {"type":"error","error":{"type":"authentication_error","message":"OAuth token has expired. Please obtain a new token or refresh your existing token."}} 에러가 발생했을 땐 Claude로 콘솔에 진입한 후 logout을 진행한 다음 다시 claude를 실행하면 처음 설치했을 때처럼 세팅하게 되고 다시 로그인 할 수 있다. 새로운 토큰을 발급 받은 후 claude 웹 사이트에서 설정 > claude code > 인증 토큰 관리에서 기존에 있던 토큰을 삭제하면 정상적으로 동작한다.

개발/Tools & Settings2025. 7. 9. 20:55Claude Code Supabase MCP

https://supabase.com/docs/guides/getting-started/mcp#claude-code Model context protocol (MCP) | Supabase DocsConnect your AI tools to Supabase using MCPsupabase.com 1. .mcp.json 파일 생성{ "mcpServers": { "supabase": { "command": "npx", "args": [ "-y", "@supabase/mcp-server-supabase@latest", "--read-only", "--project-ref=" ], "env": { "SUPA..

개발/Tools & Settings2025. 7. 8. 10:19Claude Code Monitor - 클로드 코드 토큰 사용량 체크 (Mac)

curl -LsSf | shuv tool install claude-usage-monitorclaude-monitor # 사용하고 있는 플랜과 시간, 리셋 시간 설정 claude-monitor --plan pro --timezone "Asia/Seoul" --reset-hour 16 https://docs.astral.sh/uv/getting-started/installation/ Installation | uvUse curl to download the script and execute it with sh: $ curl -LsSf https://astral.sh/uv/install.sh | sh If your system doesn't have curl, you can use wget: $ wge..

개발/Tools & Settings2024. 12. 9. 21:38Mac Flutter 개발환경 세팅

Flutter 설치brew install --cask flutter Fluttor 상태 체크flutter doctor문제가 발생하면 알려주고 어떻게 해야하는지 명령어를 알려준다.해결 명령어는 플러터 버전과 현재 상황에 따라 달라질 수 있으므로 flutter doctor 명령어 수행 후 확인해보면 된다.  Xcode 설치Xcode는 AppStore에서 설치할 수 있고, 설치 후 cocoapods를 설치해야한다. IOS 시뮬레이터가 없다면 download 해주면 된다.brew install cocoapodsxcodebuild -downloadPlatform iOS  Android Studio 설치android studio는 홈 브루를 통해 설치할 수 있다.brew install --cask android-s..

image