careerly-data-mcp 3.1.1 → 3.1.2

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/dist/cli/setup.js CHANGED
@@ -499,7 +499,7 @@ export async function runSetup() {
499
499
  ga4: ga4Config.connected,
500
500
  bigquery: bqConfig.connected,
501
501
  gsc: gscConfig.connected,
502
- tools: 15,
502
+ tools: 17,
503
503
  });
504
504
  printStatusInfo({
505
505
  ga4PropertyId: ga4Config.propertyId,
@@ -509,7 +509,7 @@ export async function runSetup() {
509
509
  ga4Connected: ga4Config.connected,
510
510
  bqConnected: bqConfig.connected,
511
511
  gscConnected: gscConfig.connected,
512
- tools: 15,
512
+ tools: 17,
513
513
  });
514
514
  printExamples();
515
515
  }
@@ -717,7 +717,7 @@ export async function runInteractiveMenu() {
717
717
  }
718
718
  printStatusInfo({
719
719
  ...currentConfig,
720
- tools: 15,
720
+ tools: 17,
721
721
  });
722
722
  const isConfigured = currentConfig.ga4Connected || currentConfig.bqConnected || currentConfig.gscConnected;
723
723
  // 메뉴 선택
package/dist/cli/ui.js CHANGED
@@ -3,7 +3,7 @@
3
3
  * Premium CLI 경험을 위한 UI 모듈
4
4
  */
5
5
  import chalk from "chalk";
6
- const VERSION = "3.0.0";
6
+ const VERSION = "3.1.0";
7
7
  /**
8
8
  * ASCII 아트 배너
9
9
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "careerly-data-mcp",
3
- "version": "3.1.1",
3
+ "version": "3.1.2",
4
4
  "description": "GA4 + BigQuery + Search Console 데이터 분석 MCP 서버 for Claude Code",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",