@yeongjaeyou/claude-code-config 0.3.1 → 0.4.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.mcp.json +35 -0
- package/README.md +35 -0
- package/package.json +2 -1
package/.mcp.json
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
{
|
|
2
|
+
"mcpServers": {
|
|
3
|
+
"mcpdocs": {
|
|
4
|
+
"type": "stdio",
|
|
5
|
+
"command": "npx",
|
|
6
|
+
"args": [
|
|
7
|
+
"@hapus/mcp-cache",
|
|
8
|
+
"uvx",
|
|
9
|
+
"--from",
|
|
10
|
+
"mcpdoc",
|
|
11
|
+
"mcpdoc",
|
|
12
|
+
"--urls",
|
|
13
|
+
"ClaudeCode:https://code.claude.com/docs/llms.txt",
|
|
14
|
+
"Cursor:https://docs.cursor.com/llms.txt",
|
|
15
|
+
"--allowed-domains",
|
|
16
|
+
"*"
|
|
17
|
+
]
|
|
18
|
+
},
|
|
19
|
+
"deepwiki": {
|
|
20
|
+
"type": "http",
|
|
21
|
+
"url": "https://mcp.deepwiki.com/mcp"
|
|
22
|
+
},
|
|
23
|
+
"serena": {
|
|
24
|
+
"type": "stdio",
|
|
25
|
+
"command": "uvx",
|
|
26
|
+
"args": [
|
|
27
|
+
"--from",
|
|
28
|
+
"git+https://github.com/oraios/serena",
|
|
29
|
+
"serena-mcp-server",
|
|
30
|
+
"--enable-web-dashboard",
|
|
31
|
+
"false"
|
|
32
|
+
]
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
}
|
package/README.md
CHANGED
|
@@ -133,6 +133,41 @@ npx @yeongjaeyou/claude-code-config [옵션]
|
|
|
133
133
|
-v, --version 버전 출력
|
|
134
134
|
```
|
|
135
135
|
|
|
136
|
+
## MCP 서버 설정
|
|
137
|
+
|
|
138
|
+
패키지에 포함된 `.mcp.json`을 프로젝트 루트에 복사하여 사용할 수 있습니다.
|
|
139
|
+
|
|
140
|
+
### 전제조건
|
|
141
|
+
|
|
142
|
+
- **Node.js**: npx 명령어 사용
|
|
143
|
+
- **Python uv**: [uv 설치](https://docs.astral.sh/uv/getting-started/installation/)
|
|
144
|
+
```bash
|
|
145
|
+
# macOS/Linux
|
|
146
|
+
curl -LsSf https://astral.sh/uv/install.sh | sh
|
|
147
|
+
|
|
148
|
+
# Windows
|
|
149
|
+
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
|
|
150
|
+
```
|
|
151
|
+
|
|
152
|
+
### 포함된 MCP 서버
|
|
153
|
+
|
|
154
|
+
| 서버 | 설명 | API 키 |
|
|
155
|
+
|------|------|--------|
|
|
156
|
+
| mcpdocs | Claude Code, Cursor 문서 검색 (mcp-cache 래퍼) | 불필요 |
|
|
157
|
+
| deepwiki | GitHub 리포지토리 문서화 질의 | 불필요 |
|
|
158
|
+
| serena | LSP 기반 코드 분석 도구 | 불필요 |
|
|
159
|
+
|
|
160
|
+
### 사용 방법
|
|
161
|
+
|
|
162
|
+
```bash
|
|
163
|
+
# .mcp.json 복사
|
|
164
|
+
cp node_modules/@yeongjaeyou/claude-code-config/.mcp.json .
|
|
165
|
+
|
|
166
|
+
# 또는 기존 .mcp.json이 있는 경우 내용 병합
|
|
167
|
+
```
|
|
168
|
+
|
|
169
|
+
> **참고**: 자체 `.mcp.json`이 있는 경우 `mcpServers` 객체를 수동으로 병합하세요.
|
|
170
|
+
|
|
136
171
|
## 사용법
|
|
137
172
|
|
|
138
173
|
### 실행 예시
|
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@yeongjaeyou/claude-code-config",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "Claude Code CLI custom commands, agents, and skills",
|
|
5
5
|
"bin": {
|
|
6
6
|
"claude-code-config": "./bin/cli.js"
|
|
7
7
|
},
|
|
8
8
|
"files": [
|
|
9
9
|
".claude",
|
|
10
|
+
".mcp.json",
|
|
10
11
|
"bin"
|
|
11
12
|
],
|
|
12
13
|
"keywords": [
|