Skip to content

Commit 6c0356b

Browse files
authored
chore: update genai-toolbox repo deps name (#85)
1 parent ed5ed96 commit 6c0356b

7 files changed

Lines changed: 18 additions & 18 deletions

File tree

.github/renovate.json5

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
pinDigests: true,
2222
},
2323
{
24-
matchPackageNames: ['googleapis/genai-toolbox'],
24+
matchPackageNames: ['googleapis/mcp-toolbox'],
2525
'semanticCommitType': 'feat'
2626
}
2727
],
@@ -31,7 +31,7 @@
3131
managerFilePatterns: ["/toolbox_version\\.txt$/"],
3232
matchStrings: ["(?<currentValue>[\\d\\.]+)"],
3333
datasourceTemplate: "github-releases",
34-
packageNameTemplate: "googleapis/genai-toolbox",
34+
packageNameTemplate: "googleapis/mcp-toolbox",
3535
extractVersionTemplate: "^v(?<version>.*)$",
3636
}
3737
]

.github/workflows/mirror-changelog.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ on:
2020

2121
jobs:
2222
add-release-notes:
23-
if: github.actor == 'renovate-bot' && startsWith(github.head_ref, 'renovate/googleapis-genai-toolbox')
23+
if: github.actor == 'renovate-bot' && startsWith(github.head_ref, 'renovate/googleapis-mcp-toolbox')
2424
runs-on: ubuntu-latest
2525
permissions:
2626
pull-requests: write
@@ -38,7 +38,7 @@ jobs:
3838
const prBody = context.payload.pull_request.body || '';
3939
4040
// Extract the relevant changelog section
41-
const startMarker = '<summary>googleapis/genai-toolbox';
41+
const startMarker = '<summary>googleapis/mcp-toolbox';
4242
const endMarker = '</details>';
4343
const startIndex = prBody.indexOf(startMarker);
4444
const endIndex = prBody.indexOf(endMarker, startIndex);
@@ -98,8 +98,8 @@ jobs:
9898
// To prevent this, we insert an invisible Unicode zero-width space (`\u200B`)
9999
// between the '#' and the number in the link text. This breaks the parser's
100100
// pattern matching without changing the visual appearance of the link.
101-
// E.g., "[#1770](...)" becomes "[genai-toolbox#​1770](...)"
102-
originalContent = originalContent.replace(/\[#(\d+)\](\([^)]+\))/g, '[genai-toolbox#\u200B$1]$2');
101+
// E.g., "[#1770](...)" becomes "[mcp-toolbox#​1770](...)"
102+
originalContent = originalContent.replace(/\[#(\d+)\](\([^)]+\))/g, '[mcp-toolbox#\u200B$1]$2');
103103
104104
const lineAsLowerCase = originalContent.toLowerCase();
105105

.github/workflows/package-and-upload-assets.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ name: Package and Upload Release Assets
1818
env:
1919
PACKAGE_NAME: "mysql"
2020
FILES_TO_PACKAGE: "gemini-extension.json MYSQL.md LICENSE"
21-
GCS_BUCKET_URL: "https://storage.googleapis.com/genai-toolbox/geminicli"
21+
GCS_BUCKET_URL: "https://storage.googleapis.com/mcp-toolbox-for-databases/geminicli"
2222

2323
on:
2424
release:

.github/workflows/presubmit-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
- name: Install toolbox binary
3131
run: |
3232
VERSION=$(cat toolbox_version.txt)
33-
curl -L -o toolbox "https://storage.googleapis.com/genai-toolbox/v${VERSION}/linux/amd64/toolbox"
33+
curl -L -o toolbox "https://storage.googleapis.com/mcp-toolbox-for-databases/v${VERSION}/linux/amd64/toolbox"
3434
chmod +x toolbox
3535
3636
- name: Install Extension

CHANGELOG.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -12,35 +12,35 @@
1212

1313
### Features
1414

15-
* **tools/mysql-get-query-plan:** Add new `mysql-get-query-plan` tool for MySQL source ([genai-toolbox#​2123](https://redirect.github.com/googleapis/genai-toolbox/issues/2123)) ([0641da0](https://redirect.github.com/googleapis/genai-toolbox/commit/0641da0353857317113b2169e547ca69603ddfde)) ([3506ace](https://github.com/gemini-cli-extensions/mysql/commit/3506ace6e0befd06869da068573fd81b77bec40e))
15+
* **tools/mysql-get-query-plan:** Add new `mysql-get-query-plan` tool for MySQL source ([mcp-toolbox#​2123](https://redirect.github.com/googleapis/mcp-toolbox/issues/2123)) ([0641da0](https://redirect.github.com/googleapis/mcp-toolbox/commit/0641da0353857317113b2169e547ca69603ddfde)) ([3506ace](https://github.com/gemini-cli-extensions/mysql/commit/3506ace6e0befd06869da068573fd81b77bec40e))
1616
* add Configuration settings ([#69](https://github.com/gemini-cli-extensions/mysql/issues/69)) ([fee5c1c](https://github.com/gemini-cli-extensions/mysql/commit/fee5c1c546c5547f6db099fd4178b79b01db0950))
1717

1818

1919
### Bug Fixes
2020

21-
* **tools:** Check for query execution error for pgxpool.Pool ([genai-toolbox#​1969](https://redirect.github.com/googleapis/genai-toolbox/issues/1969)) ([2bff138](https://redirect.github.com/googleapis/genai-toolbox/commit/2bff1384a3570ef46bc03ebebc507923af261987)) ([3506ace](https://github.com/gemini-cli-extensions/mysql/commit/3506ace6e0befd06869da068573fd81b77bec40e))
21+
* **tools:** Check for query execution error for pgxpool.Pool ([mcp-toolbox#​1969](https://redirect.github.com/googleapis/mcp-toolbox/issues/1969)) ([2bff138](https://redirect.github.com/googleapis/mcp-toolbox/commit/2bff1384a3570ef46bc03ebebc507923af261987)) ([3506ace](https://github.com/gemini-cli-extensions/mysql/commit/3506ace6e0befd06869da068573fd81b77bec40e))
2222

2323
## [0.1.3](https://github.com/gemini-cli-extensions/mysql/compare/0.1.2...0.1.3) (2025-11-18)
2424

2525

2626
### Features
2727

28-
* **source/mysql:** Set default host and port for MySQL source ([genai-toolbox#​1922](https://redirect.github.com/googleapis/genai-toolbox/issues/1922)) ([2c228ef](https://redirect.github.com/googleapis/genai-toolbox/commit/2c228ef4f2d4cb8dfc41e845466bfe3566d141a1)) ([a0d7947](https://github.com/gemini-cli-extensions/mysql/commit/a0d7947a9b5071ee477a01f116abae3b7818f372))
28+
* **source/mysql:** Set default host and port for MySQL source ([mcp-toolbox#​1922](https://redirect.github.com/googleapis/mcp-toolbox/issues/1922)) ([2c228ef](https://redirect.github.com/googleapis/mcp-toolbox/commit/2c228ef4f2d4cb8dfc41e845466bfe3566d141a1)) ([a0d7947](https://github.com/gemini-cli-extensions/mysql/commit/a0d7947a9b5071ee477a01f116abae3b7818f372))
2929

3030
## [0.1.2](https://github.com/gemini-cli-extensions/mysql/compare/0.1.1...0.1.2) (2025-10-27)
3131

3232

3333
### Features
3434

35-
* **sources/alloydb,cloudsqlpg,cloudsqlmysql,cloudsqlmssql:** Support PSC connection ([#1686](https://redirect.github.com/googleapis/genai-toolbox/issues/1686)) ([9d2bf79](https://redirect.github.com/googleapis/genai-toolbox/commit/9d2bf79becfda104ef77f34b8d4b22cbedbc4bf3)) ([6349c2c](https://github.com/gemini-cli-extensions/mysql/commit/6349c2c289cef74ad4568419ea24892689c478e0))
36-
* Add program name to MySQL connections ([#1617](https://redirect.github.com/googleapis/genai-toolbox/issues/1617)) ([c4a22b8](https://redirect.github.com/googleapis/genai-toolbox/commit/c4a22b8d3bd0307325215ebd2f30ba37927cd37e)) ([6349c2c](https://github.com/gemini-cli-extensions/mysql/commit/6349c2c289cef74ad4568419ea24892689c478e0))
35+
* **sources/alloydb,cloudsqlpg,cloudsqlmysql,cloudsqlmssql:** Support PSC connection ([#1686](https://redirect.github.com/googleapis/mcp-toolbox/issues/1686)) ([9d2bf79](https://redirect.github.com/googleapis/mcp-toolbox/commit/9d2bf79becfda104ef77f34b8d4b22cbedbc4bf3)) ([6349c2c](https://github.com/gemini-cli-extensions/mysql/commit/6349c2c289cef74ad4568419ea24892689c478e0))
36+
* Add program name to MySQL connections ([#1617](https://redirect.github.com/googleapis/mcp-toolbox/issues/1617)) ([c4a22b8](https://redirect.github.com/googleapis/mcp-toolbox/commit/c4a22b8d3bd0307325215ebd2f30ba37927cd37e)) ([6349c2c](https://github.com/gemini-cli-extensions/mysql/commit/6349c2c289cef74ad4568419ea24892689c478e0))
3737

3838

3939
### Bug Fixes
4040

41-
* **sources/mysql:** Escape mysql user agent ([#1707](https://redirect.github.com/googleapis/genai-toolbox/issues/1707)) ([eeb694c](https://redirect.github.com/googleapis/genai-toolbox/commit/eeb694c20facc40a38bfa67073c4cb1f3dd657ff)) ([6349c2c](https://github.com/gemini-cli-extensions/mysql/commit/6349c2c289cef74ad4568419ea24892689c478e0))
42-
* **sources/mysql:** Escape program\_name for MySQL ([#1717](https://redirect.github.com/googleapis/genai-toolbox/issues/1717)) ([02f7f8a](https://redirect.github.com/googleapis/genai-toolbox/commit/02f7f8af979057efe99fd138cb1b958130355b68)) ([6349c2c](https://github.com/gemini-cli-extensions/mysql/commit/6349c2c289cef74ad4568419ea24892689c478e0))
43-
* **tools/mysql-list-tables:** Update sql query to resolve subquery scope error ([#1629](https://redirect.github.com/googleapis/genai-toolbox/issues/1629)) ([94e19d8](https://redirect.github.com/googleapis/genai-toolbox/commit/94e19d87e54e831b80eb766572e48bc7370305d8)) ([6349c2c](https://github.com/gemini-cli-extensions/mysql/commit/6349c2c289cef74ad4568419ea24892689c478e0))
41+
* **sources/mysql:** Escape mysql user agent ([#1707](https://redirect.github.com/googleapis/mcp-toolbox/issues/1707)) ([eeb694c](https://redirect.github.com/googleapis/mcp-toolbox/commit/eeb694c20facc40a38bfa67073c4cb1f3dd657ff)) ([6349c2c](https://github.com/gemini-cli-extensions/mysql/commit/6349c2c289cef74ad4568419ea24892689c478e0))
42+
* **sources/mysql:** Escape program\_name for MySQL ([#1717](https://redirect.github.com/googleapis/mcp-toolbox/issues/1717)) ([02f7f8a](https://redirect.github.com/googleapis/mcp-toolbox/commit/02f7f8af979057efe99fd138cb1b958130355b68)) ([6349c2c](https://github.com/gemini-cli-extensions/mysql/commit/6349c2c289cef74ad4568419ea24892689c478e0))
43+
* **tools/mysql-list-tables:** Update sql query to resolve subquery scope error ([#1629](https://redirect.github.com/googleapis/mcp-toolbox/issues/1629)) ([94e19d8](https://redirect.github.com/googleapis/mcp-toolbox/commit/94e19d87e54e831b80eb766572e48bc7370305d8)) ([6349c2c](https://github.com/gemini-cli-extensions/mysql/commit/6349c2c289cef74ad4568419ea24892689c478e0))
4444

4545
## [0.1.1](https://github.com/gemini-cli-extensions/mysql/compare/0.1.0...0.1.1) (2025-09-30)
4646

DEVELOPER.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ The core logic for this extension is handled by a pre-built `toolbox` binary. Th
3333
VERSION=$(cat toolbox_version.txt)
3434
3535
# Example for macOS/amd64
36-
curl -L -o toolbox https://storage.googleapis.com/genai-toolbox/geminicli/v$VERSION/darwin/amd64/toolbox
36+
curl -L -o toolbox https://storage.googleapis.com/mcp-toolbox-for-databases/geminicli/v$VERSION/darwin/amd64/toolbox
3737
chmod +x toolbox
3838
```
3939
Adjust the URL for your operating system (`linux/amd64`, `darwin/arm64`, `windows/amd64`).

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,4 +119,4 @@ Common issues:
119119

120120
* "✖ Error during discovery for server: MCP error -32000: Connection closed": The database connection has not been established. Ensure your configuration is set via environment variables.
121121
* "✖ MCP ERROR: Error: spawn /Users/USER/.gemini/extensions/mysql/toolbox ENOENT": The Toolbox binary did not download correctly. Ensure you are using Gemini CLI v0.6.0+.
122-
* "cannot execute binary file": The Toolbox binary did not download correctly. Ensure the correct binary for your OS/Architecture has been downloaded. See [Installing the server](https://googleapis.github.io/genai-toolbox/getting-started/introduction/#installing-the-server) for more information.
122+
* "cannot execute binary file": The Toolbox binary did not download correctly. Ensure the correct binary for your OS/Architecture has been downloaded. See [Installing the server](https://mcp-toolbox.dev/documentation/introduction/#install-toolbox) for more information.

0 commit comments

Comments
 (0)