@cano721/mysql-mcp-server 0.1.6 → 0.1.7

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.
Files changed (2) hide show
  1. package/README.md +17 -6
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -18,9 +18,18 @@
18
18
 
19
19
  ## 설치
20
20
 
21
- ### 1. 다음 방법 하나로 설치:
21
+ ### 방법 1: npx 사용 (권장 - 설치 불필요)
22
22
 
23
- #### NPM에서 설치
23
+ `npx`를 사용하면 별도 설치 없이 바로 사용할 수 있습니다:
24
+
25
+ ```bash
26
+ # 설치 없이 바로 사용 가능
27
+ npx @cano721/mysql-mcp-server
28
+ ```
29
+
30
+ ### 방법 2: 전역 설치
31
+
32
+ 자주 사용하거나 오프라인에서 사용하려면 전역 설치:
24
33
 
25
34
  ```bash
26
35
  # 전역 설치
@@ -30,7 +39,9 @@ npm install -g @cano721/mysql-mcp-server
30
39
  npm install @cano721/mysql-mcp-server
31
40
  ```
32
41
 
33
- #### 소스에서 빌드
42
+ ### 방법 3: 소스에서 빌드
43
+
44
+ 개발이나 커스터마이징이 필요한 경우:
34
45
 
35
46
  ```bash
36
47
  # 저장소 복제
@@ -42,7 +53,7 @@ npm install
42
53
  npm run build
43
54
  ```
44
55
 
45
- #### Smithery를 통한 설치
56
+ ### 방법 4: Smithery를 통한 설치
46
57
 
47
58
  Claude AI용 MySQL 데이터베이스 접근 MCP 서버를 Smithery를 통해 자동으로 설치:
48
59
 
@@ -64,7 +75,7 @@ npx -y @smithery/cli install @cano721/mysql-mcp-server --client claude
64
75
 
65
76
  MCP 설정 파일에 다음 구성을 추가하세요:
66
77
 
67
- npm으로 설치한 경우 (옵션 1):
78
+ npx 사용 (권장):
68
79
  ```json
69
80
  {
70
81
  "mcpServers": {
@@ -85,7 +96,7 @@ npm으로 설치한 경우 (옵션 1):
85
96
  }
86
97
  ```
87
98
 
88
- 소스에서 빌드한 경우 (옵션 2):
99
+ 소스에서 빌드한 경우:
89
100
  ```json
90
101
  {
91
102
  "mcpServers": {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cano721/mysql-mcp-server",
3
- "version": "0.1.6",
3
+ "version": "0.1.7",
4
4
  "description": "An MCP server that provides read-only access to MySQL databases.",
5
5
  "type": "module",
6
6
  "bin": {