File tree Expand file tree Collapse file tree 4 files changed +8
-5
lines changed Expand file tree Collapse file tree 4 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -65,7 +65,7 @@ Replace `PATH_TO_REPO` in the following snippet with the path where you cloned
6565the repo:
6666
6767```
68- "command": "PATH_TO_REPO/.venv/bin/google- analytics-mcp",
68+ "command": "PATH_TO_REPO/.venv/bin/analytics-mcp",
6969```
7070
7171When running the `gemini` command from a terminal, add the `--debug` option so
@@ -90,7 +90,7 @@ branch named `awesome-feature-42` in this repo:
9090 "--no-cache",
9191 "--spec",
9292 "git+https://github.com/googleanalytics/google-analytics-mcp.git@awesome-feature-42",
93- "google- analytics-mcp"
93+ "analytics-mcp"
9494 ],
9595 "env": {
9696 "GOOGLE_APPLICATION_CREDENTIALS": "PATH_TO_CREDENTIALS_JSON",
Original file line number Diff line number Diff line change @@ -127,7 +127,7 @@ Credentials saved to file: [PATH_TO_CREDENTIALS_JSON]
127127 " run" ,
128128 " --spec" ,
129129 " git+https://github.com/googleanalytics/google-analytics-mcp.git" ,
130- " google- analytics-mcp"
130+ " analytics-mcp"
131131 ],
132132 "env" : {
133133 "GOOGLE_APPLICATION_CREDENTIALS" : " PATH_TO_CREDENTIALS_JSON" ,
Original file line number Diff line number Diff line change @@ -29,7 +29,7 @@ def _get_package_version_with_fallback():
2929 Falls back to 'unknown' if the version can't be resolved.
3030 """
3131 try :
32- return metadata .version ("google- analytics-mcp" )
32+ return metadata .version ("analytics-mcp" )
3333 except :
3434 return "unknown"
3535
Original file line number Diff line number Diff line change 11[project ]
2- name = " google- analytics-mcp"
2+ name = " analytics-mcp"
33version = " 0.1.0"
44# Lower bound of 3.10 due to the 'mcp' dependency:
55# https://github.com/modelcontextprotocol/python-sdk/blob/main/pyproject.toml
66requires-python = " >=3.10, <3.14"
77license = " Apache-2.0"
8+ readme = " README.md"
89dependencies = [
910 " google-analytics-data==0.18.19" ,
1011 " google-analytics-admin==0.24.1" ,
@@ -14,6 +15,8 @@ dependencies = [
1415]
1516
1617[project .scripts ]
18+ analytics-mcp = " analytics_mcp.server:run_server"
19+ # The previous name of the script. Kept for backwards compatibility.
1720google-analytics-mcp = " analytics_mcp.server:run_server"
1821
1922[project .optional-dependencies ]
You can’t perform that action at this time.
0 commit comments