@dongsik/ga4-mcp 0.1.1 → 0.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/README.md CHANGED
@@ -73,7 +73,7 @@ Add to your `claude_desktop_config.json`:
73
73
  "mcpServers": {
74
74
  "ga": {
75
75
  "command": "npx",
76
- "args": ["-y", "@dongsik/ga4-mcp"],
76
+ "args": ["--package=@dongsik/ga4-mcp", "ga4-mcp"],
77
77
  "env": {
78
78
  "GA_CLIENT_SECRET_PATH": "/path/to/client_secret.json",
79
79
  "GA4_PROPERTY_ID": "123456789"
@@ -88,13 +88,13 @@ Add to your `claude_desktop_config.json`:
88
88
  ### Claude Code (CLI)
89
89
 
90
90
  ```bash
91
- claude mcp add ga4 -- npx -y @dongsik/ga4-mcp
91
+ claude mcp add ga4 -- npx --package=@dongsik/ga4-mcp ga4-mcp
92
92
  ```
93
93
 
94
94
  Set environment variables:
95
95
 
96
96
  ```bash
97
- claude mcp add ga4 -e GA_CLIENT_SECRET_PATH=/path/to/client_secret.json -e GA4_PROPERTY_ID=123456789 -- npx -y @dongsik/ga4-mcp
97
+ claude mcp add ga4 -e GA_CLIENT_SECRET_PATH=/path/to/client_secret.json -e GA4_PROPERTY_ID=123456789 -- npx --package=@dongsik/ga4-mcp ga4-mcp
98
98
  ```
99
99
 
100
100
  ### Environment Variables
package/docs/README.ko.md CHANGED
@@ -73,7 +73,7 @@ npx -y @dongsik/ga4-mcp
73
73
  "mcpServers": {
74
74
  "ga": {
75
75
  "command": "npx",
76
- "args": ["-y", "@dongsik/ga4-mcp"],
76
+ "args": ["--package=@dongsik/ga4-mcp", "ga4-mcp"],
77
77
  "env": {
78
78
  "GA_CLIENT_SECRET_PATH": "/path/to/client_secret.json",
79
79
  "GA4_PROPERTY_ID": "123456789"
@@ -88,13 +88,13 @@ npx -y @dongsik/ga4-mcp
88
88
  ### Claude Code (CLI)
89
89
 
90
90
  ```bash
91
- claude mcp add ga4 -- npx -y @dongsik/ga4-mcp
91
+ claude mcp add ga4 -- npx --package=@dongsik/ga4-mcp ga4-mcp
92
92
  ```
93
93
 
94
94
  환경변수 설정:
95
95
 
96
96
  ```bash
97
- claude mcp add ga4 -e GA_CLIENT_SECRET_PATH=/path/to/client_secret.json -e GA4_PROPERTY_ID=123456789 -- npx -y @dongsik/ga4-mcp
97
+ claude mcp add ga4 -e GA_CLIENT_SECRET_PATH=/path/to/client_secret.json -e GA4_PROPERTY_ID=123456789 -- npx --package=@dongsik/ga4-mcp ga4-mcp
98
98
  ```
99
99
 
100
100
  ### 환경변수
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@dongsik/ga4-mcp",
3
- "version": "0.1.1",
3
+ "version": "0.1.2",
4
4
  "description": "Google Analytics 4 MCP Server",
5
5
  "type": "module",
6
6
  "bin": {
7
7
  "ga4-mcp": "dist/index.js"
8
8
  },
9
9
  "scripts": {
10
- "build": "tsc",
10
+ "build": "tsc && chmod +x dist/index.js",
11
11
  "start": "node dist/index.js"
12
12
  },
13
13
  "dependencies": {