Skip to content

Commit 90dbf31

Browse files
chore: correct module namespace and imports to mcp-toolbox
1 parent 08ab504 commit 90dbf31

760 files changed

Lines changed: 3775 additions & 3775 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.ci/continuous.release.cloudbuild.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ steps:
8282
path: '/zig-tools'
8383
script: |
8484
#!/usr/bin/env bash
85-
go build -ldflags "-X github.com/googleapis/genai-toolbox/cmd.commitSha=$(git rev-parse --short HEAD)" -o toolbox.linux.amd64
85+
go build -ldflags "-X github.com/googleapis/mcp-toolbox/cmd.commitSha=$(git rev-parse --short HEAD)" -o toolbox.linux.amd64
8686
8787
- id: "store-linux-amd64"
8888
name: "gcr.io/cloud-builders/gcloud:latest"
@@ -113,7 +113,7 @@ steps:
113113
script: |
114114
#!/usr/bin/env bash
115115
export VERSION=$(cat ./cmd/version.txt)
116-
go build -ldflags "-X github.com/googleapis/genai-toolbox/cmd.commitSha=$(git rev-parse --short HEAD)" -o toolbox.geminicli.linux.amd64
116+
go build -ldflags "-X github.com/googleapis/mcp-toolbox/cmd.commitSha=$(git rev-parse --short HEAD)" -o toolbox.geminicli.linux.amd64
117117
118118
- id: "build-darwin-arm64"
119119
name: golang:1
@@ -141,7 +141,7 @@ steps:
141141
path: '/macos-sdk'
142142
script: |
143143
#!/usr/bin/env bash
144-
go build -trimpath -buildmode=pie -ldflags "-s -w -X github.com/googleapis/genai-toolbox/cmd.commitSha=$(git rev-parse --short HEAD)" -o toolbox.darwin.arm64
144+
go build -trimpath -buildmode=pie -ldflags "-s -w -X github.com/googleapis/mcp-toolbox/cmd.commitSha=$(git rev-parse --short HEAD)" -o toolbox.darwin.arm64
145145
146146
- id: "store-darwin-arm64"
147147
name: "gcr.io/cloud-builders/gcloud:latest"
@@ -178,7 +178,7 @@ steps:
178178
path: '/macos-sdk'
179179
script: |
180180
#!/usr/bin/env bash
181-
go build -trimpath -buildmode=pie -ldflags "-s -w -X github.com/googleapis/genai-toolbox/cmd.commitSha=$(git rev-parse --short HEAD)" -o toolbox.geminicli.darwin.arm64
181+
go build -trimpath -buildmode=pie -ldflags "-s -w -X github.com/googleapis/mcp-toolbox/cmd.commitSha=$(git rev-parse --short HEAD)" -o toolbox.geminicli.darwin.arm64
182182
183183
- id: "build-darwin-amd64"
184184
name: golang:1
@@ -206,7 +206,7 @@ steps:
206206
path: '/macos-sdk'
207207
script: |
208208
#!/usr/bin/env bash
209-
go build -trimpath -buildmode=pie -ldflags "-s -w -X github.com/googleapis/genai-toolbox/cmd.commitSha=$(git rev-parse --short HEAD)" -o toolbox.darwin.amd64
209+
go build -trimpath -buildmode=pie -ldflags "-s -w -X github.com/googleapis/mcp-toolbox/cmd.commitSha=$(git rev-parse --short HEAD)" -o toolbox.darwin.amd64
210210
211211
- id: "store-darwin-amd64"
212212
name: "gcr.io/cloud-builders/gcloud:latest"
@@ -243,7 +243,7 @@ steps:
243243
path: '/macos-sdk'
244244
script: |
245245
#!/usr/bin/env bash
246-
go build -trimpath -buildmode=pie -ldflags "-s -w -X github.com/googleapis/genai-toolbox/cmd.commitSha=$(git rev-parse --short HEAD)" -o toolbox.geminicli.darwin.amd64
246+
go build -trimpath -buildmode=pie -ldflags "-s -w -X github.com/googleapis/mcp-toolbox/cmd.commitSha=$(git rev-parse --short HEAD)" -o toolbox.geminicli.darwin.amd64
247247
248248
- id: "build-windows-amd64"
249249
name: golang:1
@@ -264,7 +264,7 @@ steps:
264264
path: '/zig-tools'
265265
script: |
266266
#!/usr/bin/env bash
267-
go build -ldflags "-X github.com/googleapis/genai-toolbox/cmd.commitSha=$(git rev-parse --short HEAD)" -o toolbox.windows.amd64
267+
go build -ldflags "-X github.com/googleapis/mcp-toolbox/cmd.commitSha=$(git rev-parse --short HEAD)" -o toolbox.windows.amd64
268268
269269
- id: "store-windows-amd64"
270270
name: "gcr.io/cloud-builders/gcloud:latest"
@@ -295,7 +295,7 @@ steps:
295295
script: |
296296
#!/usr/bin/env bash
297297
export VERSION=$(cat ./cmd/version.txt)
298-
go build -ldflags "-X github.com/googleapis/genai-toolbox/cmd.commitSha=$(git rev-parse --short HEAD)" -o toolbox.geminicli.windows.amd64
298+
go build -ldflags "-X github.com/googleapis/mcp-toolbox/cmd.commitSha=$(git rev-parse --short HEAD)" -o toolbox.geminicli.windows.amd64
299299
300300
options:
301301
automapSubstitutions: true

.ci/test_with_coverage.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ TOOL_PACKAGE_NAMES=("$@")
2323
COVERAGE_FILE="${TEST_BINARY%.test}_coverage.out"
2424
FILTERED_COVERAGE_FILE="${TEST_BINARY%.test}_filtered_coverage.out"
2525

26-
export path="github.com/googleapis/genai-toolbox/internal/"
26+
export path="github.com/googleapis/mcp-toolbox/internal/"
2727

2828
GREP_PATTERN="^mode:|${path}${SOURCE_PATH}"
2929
# Add each tool package path to the grep pattern

.ci/versioned.release.cloudbuild.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ steps:
9898
path: '/zig-tools'
9999
script: |
100100
#!/usr/bin/env bash
101-
go build -ldflags "-X github.com/googleapis/genai-toolbox/cmd.buildType=binary -X github.com/googleapis/genai-toolbox/cmd.commitSha=$(git rev-parse --short HEAD)" -o toolbox.linux.amd64
101+
go build -ldflags "-X github.com/googleapis/mcp-toolbox/cmd.buildType=binary -X github.com/googleapis/mcp-toolbox/cmd.commitSha=$(git rev-parse --short HEAD)" -o toolbox.linux.amd64
102102
103103
- id: "store-linux-amd64"
104104
name: "gcr.io/cloud-builders/gcloud:latest"
@@ -129,7 +129,7 @@ steps:
129129
path: '/zig-tools'
130130
script: |
131131
#!/usr/bin/env bash
132-
go build -ldflags "-X github.com/googleapis/genai-toolbox/cmd.buildType=geminicli.binary -X github.com/googleapis/genai-toolbox/cmd.commitSha=$(git rev-parse --short HEAD)" -o toolbox.geminicli.linux.amd64
132+
go build -ldflags "-X github.com/googleapis/mcp-toolbox/cmd.buildType=geminicli.binary -X github.com/googleapis/mcp-toolbox/cmd.commitSha=$(git rev-parse --short HEAD)" -o toolbox.geminicli.linux.amd64
133133
134134
- id: "store-linux-amd64-geminicli"
135135
name: "gcr.io/cloud-builders/gcloud:latest"
@@ -167,7 +167,7 @@ steps:
167167
path: '/macos-sdk'
168168
script: |
169169
#!/usr/bin/env bash
170-
go build -trimpath -buildmode=pie -ldflags "-s -w -X github.com/googleapis/genai-toolbox/cmd.buildType=binary -X github.com/googleapis/genai-toolbox/cmd.commitSha=$(git rev-parse --short HEAD)" -o toolbox.darwin.arm64
170+
go build -trimpath -buildmode=pie -ldflags "-s -w -X github.com/googleapis/mcp-toolbox/cmd.buildType=binary -X github.com/googleapis/mcp-toolbox/cmd.commitSha=$(git rev-parse --short HEAD)" -o toolbox.darwin.arm64
171171
172172
- id: "store-darwin-arm64"
173173
name: "gcr.io/cloud-builders/gcloud:latest"
@@ -205,7 +205,7 @@ steps:
205205
path: '/macos-sdk'
206206
script: |
207207
#!/usr/bin/env bash
208-
go build -trimpath -buildmode=pie -ldflags "-s -w -X github.com/googleapis/genai-toolbox/cmd.buildType=geminicli.binary -X github.com/googleapis/genai-toolbox/cmd.commitSha=$(git rev-parse --short HEAD)" -o toolbox.geminicli.darwin.arm64
208+
go build -trimpath -buildmode=pie -ldflags "-s -w -X github.com/googleapis/mcp-toolbox/cmd.buildType=geminicli.binary -X github.com/googleapis/mcp-toolbox/cmd.commitSha=$(git rev-parse --short HEAD)" -o toolbox.geminicli.darwin.arm64
209209
210210
- id: "store-darwin-arm64-geminicli"
211211
name: "gcr.io/cloud-builders/gcloud:latest"
@@ -243,7 +243,7 @@ steps:
243243
path: '/macos-sdk'
244244
script: |
245245
#!/usr/bin/env bash
246-
go build -trimpath -buildmode=pie -ldflags "-s -w -X github.com/googleapis/genai-toolbox/cmd.buildType=binary -X github.com/googleapis/genai-toolbox/cmd.commitSha=$(git rev-parse --short HEAD)" -o toolbox.darwin.amd64
246+
go build -trimpath -buildmode=pie -ldflags "-s -w -X github.com/googleapis/mcp-toolbox/cmd.buildType=binary -X github.com/googleapis/mcp-toolbox/cmd.commitSha=$(git rev-parse --short HEAD)" -o toolbox.darwin.amd64
247247
248248
- id: "store-darwin-amd64"
249249
name: "gcr.io/cloud-builders/gcloud:latest"
@@ -281,7 +281,7 @@ steps:
281281
path: '/macos-sdk'
282282
script: |
283283
#!/usr/bin/env bash
284-
go build -trimpath -buildmode=pie -ldflags "-s -w -X github.com/googleapis/genai-toolbox/cmd.buildType=geminicli.binary -X github.com/googleapis/genai-toolbox/cmd.commitSha=$(git rev-parse --short HEAD)" -o toolbox.geminicli.darwin.amd64
284+
go build -trimpath -buildmode=pie -ldflags "-s -w -X github.com/googleapis/mcp-toolbox/cmd.buildType=geminicli.binary -X github.com/googleapis/mcp-toolbox/cmd.commitSha=$(git rev-parse --short HEAD)" -o toolbox.geminicli.darwin.amd64
285285
286286
- id: "store-darwin-amd64-geminicli"
287287
name: "gcr.io/cloud-builders/gcloud:latest"
@@ -312,7 +312,7 @@ steps:
312312
path: '/zig-tools'
313313
script: |
314314
#!/usr/bin/env bash
315-
go build -ldflags "-X github.com/googleapis/genai-toolbox/cmd.buildType=binary -X github.com/googleapis/genai-toolbox/cmd.commitSha=$(git rev-parse --short HEAD)" -o toolbox.windows.amd64
315+
go build -ldflags "-X github.com/googleapis/mcp-toolbox/cmd.buildType=binary -X github.com/googleapis/mcp-toolbox/cmd.commitSha=$(git rev-parse --short HEAD)" -o toolbox.windows.amd64
316316
317317
- id: "store-windows-amd64"
318318
name: "gcr.io/cloud-builders/gcloud:latest"
@@ -345,7 +345,7 @@ steps:
345345
path: '/macos-sdk'
346346
script: |
347347
#!/usr/bin/env bash
348-
go build -ldflags "-X github.com/googleapis/genai-toolbox/cmd.buildType=geminicli.binary -X github.com/googleapis/genai-toolbox/cmd.commitSha=$(git rev-parse --short HEAD)" -o toolbox.geminicli.windows.amd64
348+
go build -ldflags "-X github.com/googleapis/mcp-toolbox/cmd.buildType=geminicli.binary -X github.com/googleapis/mcp-toolbox/cmd.commitSha=$(git rev-parse --short HEAD)" -o toolbox.geminicli.windows.amd64
349349
350350
- id: "store-windows-amd64-geminicli"
351351
name: "gcr.io/cloud-builders/gcloud:latest"

.github/ISSUE_TEMPLATE/bug_report.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ body:
3030
label: Prerequisites
3131
description: |
3232
Please run through the following list and make sure you've tried the usual "quick fixes":
33-
- Search the [current open issues](https://github.com/googleapis/genai-toolbox/issues)
34-
- Update to the [latest version of Toolbox](https://github.com/googleapis/genai-toolbox/releases)
33+
- Search the [current open issues](https://github.com/googleapis/mcp-toolbox/issues)
34+
- Update to the [latest version of Toolbox](https://github.com/googleapis/mcp-toolbox/releases)
3535
options:
3636
- label: "I've searched the current open issues"
3737
required: true

.github/ISSUE_TEMPLATE/feature_request.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ body:
3030
description: |
3131
Please run through the following list and make sure you've tried the usual "quick fixes":
3232
options:
33-
- label: "Search the [current open issues](https://github.com/googleapis/genai-toolbox/issues)"
33+
- label: "Search the [current open issues](https://github.com/googleapis/mcp-toolbox/issues)"
3434
required: true
3535

3636
- type: textarea

.github/ISSUE_TEMPLATE/question.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ body:
3030
description: |
3131
Please run through the following list and make sure you've tried the usual "quick fixes":
3232
options:
33-
- label: "Search the [current open issues](https://github.com/googleapis/genai-toolbox/issues)"
33+
- label: "Search the [current open issues](https://github.com/googleapis/mcp-toolbox/issues)"
3434
required: true
3535

3636
- type: textarea

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@
99
> few things you can do to make sure it goes smoothly:
1010
1111
- [ ] Make sure you reviewed
12-
[CONTRIBUTING.md](https://github.com/googleapis/genai-toolbox/blob/main/CONTRIBUTING.md)
12+
[CONTRIBUTING.md](https://github.com/googleapis/mcp-toolbox/blob/main/CONTRIBUTING.md)
1313
- [ ] Make sure to open an issue as a
14-
[bug/issue](https://github.com/googleapis/genai-toolbox/issues/new/choose)
14+
[bug/issue](https://github.com/googleapis/mcp-toolbox/issues/new/choose)
1515
before writing your code! That way we can discuss the change, evaluate
1616
designs, and agree on the general idea
1717
- [ ] Ensure the tests and linter pass

.github/workflows/link_checker.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ jobs:
8787
run: |
8888
echo "## Link Resolution Note" > full-report.md
8989
echo "Local links and directory changes work differently on GitHub than on the docsite. You must ensure fixes pass the **GitHub check** and also work with **\`hugo server\`**." >> full-report.md
90-
echo "See [Link Checking and Fixing with Lychee](https://github.com/googleapis/genai-toolbox/blob/main/DEVELOPER.md#link-checking-and-fixing-with-lychee) for more details." >> full-report.md
90+
echo "See [Link Checking and Fixing with Lychee](https://github.com/googleapis/mcp-toolbox/blob/main/DEVELOPER.md#link-checking-and-fixing-with-lychee) for more details." >> full-report.md
9191
echo "" >> full-report.md
9292
sed -E '/(Redirect|Redirects per input)/d' lychee-report.md >> full-report.md
9393

.github/workflows/link_checker_report.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ jobs:
5050
run: |
5151
echo "## Link Resolution Note" > full-report.md
5252
echo "Local links and directory changes work differently on GitHub than on the docsite.You must ensure fixes pass the **GitHub check** and also work with **\`hugo server\`**." >> full-report.md
53-
echo "See [Link Checking and Fixing with Lychee](https://github.com/googleapis/genai-toolbox/blob/main/DEVELOPER.md#link-checking-and-fixing-with-lychee) for more details." >> full-report.md
53+
echo "See [Link Checking and Fixing with Lychee](https://github.com/googleapis/mcp-toolbox/blob/main/DEVELOPER.md#link-checking-and-fixing-with-lychee) for more details." >> full-report.md
5454
echo "" >> full-report.md
5555
sed -E '/(Redirect|Redirects per input)/d' lychee-report.md >> full-report.md
5656

.github/workflows/tests.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
- name: Check coverage
8282
if: ${{ runner.os == 'Linux' }}
8383
run: |
84-
FILE_TO_EXCLUDE="github.com/googleapis/genai-toolbox/internal/server/config.go"
84+
FILE_TO_EXCLUDE="github.com/googleapis/mcp-toolbox/internal/server/config.go"
8585
ESCAPED_PATH=$(echo "$FILE_TO_EXCLUDE" | sed 's/\//\\\//g; s/\./\\\./g')
8686
sed -i "/^${ESCAPED_PATH}:/d" coverage.out
8787
total_coverage=$(go tool cover -func=coverage.out | grep "total:" | awk '{print $3}')

0 commit comments

Comments
 (0)