@perceptdot/ga4 0.1.0 → 0.1.1

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/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@perceptdot/ga4",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "AI agent vision for Google Analytics 4 — with ROI measurement. perceptdot.com",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
package/smithery.yaml ADDED
@@ -0,0 +1,29 @@
1
+ # Smithery configuration — @perceptdot/ga4
2
+ # AI agent vision for Google Analytics 4 with ROI measurement
3
+ # https://smithery.ai/docs/config#smitheryyaml
4
+
5
+ startCommand:
6
+ type: stdio
7
+
8
+ configSchema:
9
+ type: object
10
+ required:
11
+ - ga4PropertyId
12
+ - googleServiceAccountKey
13
+ properties:
14
+ ga4PropertyId:
15
+ type: string
16
+ description: "GA4 Property ID (숫자). GA4 콘솔 → 관리 → 속성 설정 → 속성 ID"
17
+ googleServiceAccountKey:
18
+ type: string
19
+ description: "Google 서비스 계정 키 JSON 문자열. Analytics Data API 뷰어 권한 필요."
20
+
21
+ commandFunction: |-
22
+ config => ({
23
+ command: 'npx',
24
+ args: ['-y', '@perceptdot/ga4'],
25
+ env: {
26
+ GA4_PROPERTY_ID: config.ga4PropertyId,
27
+ GOOGLE_SERVICE_ACCOUNT_KEY: config.googleServiceAccountKey
28
+ }
29
+ })