@ninebone/mcp 1.0.5 → 1.0.6

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ninebone/mcp",
3
- "version": "1.0.5",
3
+ "version": "1.0.6",
4
4
  "description": "NineQuery AI Connector for Database",
5
5
  "main": "src/index.mjs",
6
6
  "type": "module",
@@ -0,0 +1,11 @@
1
+ module.exports = {
2
+ apps: [{
3
+ name: "nine-mcp",
4
+ // 파일 경로를 적는 대신, 등록된 명령어(bin) 이름을 적습니다.
5
+ script: "nine-mcp",
6
+ // PM2에게 이 명령어는 'node'로 실행하라고 명시합니다.
7
+ interpreter: "node",
8
+ // 핵심 옵션
9
+ node_args: "--input-type=module"
10
+ }]
11
+ }