- CLAUDE.md 추가: Claude Code용 프로젝트 가이드 문서 - .gitignore 업데이트: Nuxt 프로젝트 표준 항목으로 개선 - .github/workflows/ci.yml 추가: lint + typecheck 자동화 - .mcp.json 추가: context7, playwright 등 MCP 서버 설정
31 lines
609 B
JSON
31 lines
609 B
JSON
{
|
|
"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"]
|
|
}
|
|
}
|
|
}
|