@cano721/mysql-mcp-server 0.1.11 → 0.1.12

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 +26 -0
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -480,6 +480,32 @@ sudo yum install -y nodejs
480
480
  2. 또는 Chocolatey 사용: `choco install nodejs`
481
481
  3. 또는 Scoop 사용: `scoop install nodejs`
482
482
 
483
+ **Node.js 업데이트 후 설정:**
484
+ ```bash
485
+ # 1. 터미널/명령 프롬프트 재시작 (중요!)
486
+
487
+ # 2. 버전 확인
488
+ node --version # v18.0.0 이상인지 확인
489
+ npm --version # 8.0.0 이상인지 확인
490
+
491
+ # 3. npm 캐시 클리어 (권장)
492
+ npm cache clean --force
493
+
494
+ # 4. MCP 서버 테스트
495
+ npx @cano721/mysql-mcp-server@latest
496
+
497
+ # 5. 환경 변수 설정 후 테스트
498
+ export MYSQL_HOST=localhost
499
+ export MYSQL_PORT=4307
500
+ export MYSQL_USER=developer
501
+ echo '{"jsonrpc":"2.0","id":1,"method":"tools/list"}' | npx @cano721/mysql-mcp-server
502
+ ```
503
+
504
+ **주의사항:**
505
+ - Node.js 업데이트 후 **반드시 터미널을 재시작**하세요
506
+ - IDE(IntelliJ, VSCode 등)도 재시작해야 새 Node.js 버전을 인식합니다
507
+ - 기존에 전역 설치한 패키지들은 재설치가 필요할 수 있습니다
508
+
483
509
  #### 1. npx 캐시 문제
484
510
  ```bash
485
511
  # 최신 버전 강제 사용
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cano721/mysql-mcp-server",
3
- "version": "0.1.11",
3
+ "version": "0.1.12",
4
4
  "description": "An MCP server that provides read-only access to MySQL databases.",
5
5
  "type": "module",
6
6
  "bin": {