@cano721/mysql-mcp-server 0.1.4 → 0.1.5
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/README.md +44 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -293,6 +293,50 @@ Kiro IDE에서 이 MCP 서버를 사용하는 예제:
|
|
|
293
293
|
}
|
|
294
294
|
```
|
|
295
295
|
|
|
296
|
+
### IntelliJ Copilot에서 사용하기
|
|
297
|
+
|
|
298
|
+
IntelliJ IDEA의 GitHub Copilot에서 MCP 서버를 사용하려면:
|
|
299
|
+
|
|
300
|
+
```json
|
|
301
|
+
{
|
|
302
|
+
"servers": {
|
|
303
|
+
"mysql": {
|
|
304
|
+
"command": "npx",
|
|
305
|
+
"args": ["@cano721/mysql-mcp-server"],
|
|
306
|
+
"env": {
|
|
307
|
+
"MYSQL_HOST": "localhost",
|
|
308
|
+
"MYSQL_PORT": "4307",
|
|
309
|
+
"MYSQL_USER": "developer"
|
|
310
|
+
},
|
|
311
|
+
"disabled": false,
|
|
312
|
+
"autoApprove": []
|
|
313
|
+
}
|
|
314
|
+
}
|
|
315
|
+
}
|
|
316
|
+
```
|
|
317
|
+
|
|
318
|
+
### Cursor IDE에서 사용하기
|
|
319
|
+
|
|
320
|
+
Cursor IDE에서 MCP 서버를 사용하려면 `.cursor/mcp.json` 파일을 생성하세요:
|
|
321
|
+
|
|
322
|
+
```json
|
|
323
|
+
{
|
|
324
|
+
"servers": [
|
|
325
|
+
{
|
|
326
|
+
"name": "mysql",
|
|
327
|
+
"type": "command",
|
|
328
|
+
"command": "npx",
|
|
329
|
+
"arguments": ["@cano721/mysql-mcp-server"],
|
|
330
|
+
"environment": {
|
|
331
|
+
"MYSQL_HOST": "localhost",
|
|
332
|
+
"MYSQL_PORT": "4307",
|
|
333
|
+
"MYSQL_USER": "developer"
|
|
334
|
+
}
|
|
335
|
+
}
|
|
336
|
+
]
|
|
337
|
+
}
|
|
338
|
+
```
|
|
339
|
+
|
|
296
340
|
### 테스트 결과
|
|
297
341
|
|
|
298
342
|
이 MCP 서버는 다음과 같은 실제 환경에서 테스트되었습니다:
|