🔧 chore: 프로젝트 환경 설정 초기화

- CLAUDE.md 추가: Claude Code용 프로젝트 가이드 문서
- .gitignore 업데이트: Nuxt 프로젝트 표준 항목으로 개선
- .github/workflows/ci.yml 추가: lint + typecheck 자동화
- .mcp.json 추가: context7, playwright 등 MCP 서버 설정
This commit is contained in:
hyeonggil
2026-03-15 15:03:12 +09:00
parent b6c43bc2a3
commit 4270b5413a
4 changed files with 145 additions and 5 deletions

30
.mcp.json Normal file
View File

@@ -0,0 +1,30 @@
{
"mcpServers": {
"context7": {
"type": "http",
"url": "https://mcp.context7.com/mcp"
},
"playwright": {
"type": "stdio",
"command": "cmd",
"args": ["/c", "npx", "@playwright/mcp@latest"],
"env": {}
},
"sequential-thinking": {
"type": "stdio",
"command": "cmd",
"args": [
"/c",
"npx",
"-y",
"@modelcontextprotocol/server-sequential-thinking"
],
"env": {}
},
"shadcn": {
"type": "stdio",
"command": "cmd",
"args": ["/c", "npx", "shadcn@latest", "mcp"]
}
}
}