terra-mcp-google 0.1.11 → 0.1.13
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.
|
@@ -1,2 +1,3 @@
|
|
|
1
|
-
export const EMBEDDED_OAUTH_CLIENT =
|
|
2
|
-
|
|
1
|
+
export const EMBEDDED_OAUTH_CLIENT = {
|
|
2
|
+
"client_id": "955132899931-v65g69gu735dje15d27hf0aud5rhare2.apps.googleusercontent.com"
|
|
3
|
+
};
|
package/package.json
CHANGED
|
@@ -1,12 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "terra-mcp-google",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.13",
|
|
4
4
|
"description": "Kozocom MCP server",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"packageManager": "pnpm@11.5.2",
|
|
7
7
|
"repository": {
|
|
8
8
|
"type": "git",
|
|
9
|
-
"url": "git+
|
|
9
|
+
"url": "git+https://github.com/quangtd-kozocom/terra-mcp-google.git"
|
|
10
10
|
},
|
|
11
11
|
"publishConfig": {
|
|
12
12
|
"access": "public"
|
package/scripts/install.sh
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env sh
|
|
2
2
|
set -eu
|
|
3
3
|
|
|
4
|
-
PACKAGE_SPEC="${PACKAGE_SPEC:-
|
|
4
|
+
PACKAGE_SPEC="${PACKAGE_SPEC:-terra-mcp-google}"
|
|
5
5
|
|
|
6
6
|
if ! command -v npm >/dev/null 2>&1; then
|
|
7
7
|
echo "npm is required. Install Node.js first: https://nodejs.org/" >&2
|
|
@@ -13,4 +13,4 @@ npm install -g "${PACKAGE_SPEC}"
|
|
|
13
13
|
|
|
14
14
|
echo >&2
|
|
15
15
|
echo "Running setup..." >&2
|
|
16
|
-
|
|
16
|
+
terra-mcp setup "$@"
|