Skip to content

Commit 47fa7b7

Browse files
google-genai-botcopybara-github
authored andcommitted
docs: update MCP Toolbox branding, binary version, and asset references
## Overview This PR updates internal tutorials and demonstration guidance following the renaming of the database connectivity tools (`genai-toolbox` -> `mcp-toolbox`) and aligns resource downloads with the newly scoped artifact destinations. ## Changes * Removed references to legacy `googleapis.github.io/genai-toolbox` pages. * Updated download commands to pull binaries directly from the rebranded bucket. * Bumped the embedded curl instruction default payload target to the newly stable `v1.1.0` release tier. PiperOrigin-RevId: 900207615
1 parent d337ddf commit 47fa7b7

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

contributing/samples/toolbox_agent/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ Before starting, ensure you have Python installed on your system.
1515
Run the following command to download and install the MCP Toolbox binary.
1616

1717
> [!NOTE]
18-
> You can find the latest version on the [Releases page](https://github.com/googleapis/genai-toolbox/releases) and update the version in the URL below.
18+
> You can find the latest version on the [Releases page](https://github.com/googleapis/mcp-toolbox/releases) and update the version in the URL below.
1919
2020
```bash
2121
export OS="linux/amd64" # one of linux/amd64, darwin/arm64, darwin/amd64, or windows/amd64
22-
curl -O https://storage.googleapis.com/genai-toolbox/v0.31.0/$OS/toolbox
22+
curl -O https://storage.googleapis.com/mcp-toolbox-for-databases/v1.1.0/$OS/toolbox
2323
chmod +x toolbox
2424
```
2525

llms-full.txt

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -9378,7 +9378,7 @@ and design patterns that help you use ADK together with MCP servers, including:
93789378

93799379
## MCP Toolbox for Databases
93809380

9381-
[MCP Toolbox for Databases](https://github.com/googleapis/genai-toolbox) is an
9381+
[MCP Toolbox for Databases](https://github.com/googleapis/mcp-toolbox) is an
93829382
open source MCP server that helps you build Gen AI tools so that your agents can
93839383
access data in your database. Google’s Agent Development Kit (ADK) has built in
93849384
support for The MCP Toolbox for Databases.
@@ -15733,18 +15733,18 @@ workflow as a tool for your agent or create a new one.
1573315733

1573415734
## Toolbox Tools for Databases
1573515735

15736-
[MCP Toolbox for Databases](https://github.com/googleapis/genai-toolbox) is an
15736+
[MCP Toolbox for Databases](https://github.com/googleapis/mcp-toolbox) is an
1573715737
open source MCP server for databases. It was designed with enterprise-grade and
1573815738
production-quality in mind. It enables you to develop tools easier, faster, and
1573915739
more securely by handling the complexities such as connection pooling,
1574015740
authentication, and more.
1574115741

1574215742
Google’s Agent Development Kit (ADK) has built in support for Toolbox. For more
1574315743
information on
15744-
[getting started](https://googleapis.github.io/genai-toolbox/getting-started) or
15745-
[configuring](https://googleapis.github.io/genai-toolbox/getting-started/configure/)
15744+
[getting started](https://mcp-toolbox.dev/documentation/introduction/#getting-started) or
15745+
[configuring](https://mcp-toolbox.dev/documentation/configuration/)
1574615746
Toolbox, see the
15747-
[documentation](https://googleapis.github.io/genai-toolbox/getting-started/introduction/).
15747+
[documentation](https://mcp-toolbox.dev/documentation/introduction/).
1574815748

1574915749
![GenAI Toolbox](../assets/mcp_db_toolbox.png)
1575015750

@@ -15754,8 +15754,8 @@ Toolbox is an open source server that you deploy and manage yourself. For more
1575415754
instructions on deploying and configuring, see the official Toolbox
1575515755
documentation:
1575615756

15757-
* [Installing the Server](https://googleapis.github.io/genai-toolbox/getting-started/introduction/#installing-the-server)
15758-
* [Configuring Toolbox](https://googleapis.github.io/genai-toolbox/getting-started/configure/)
15757+
* [Installing the Server](https://mcp-toolbox.dev/documentation/introduction/#getting-started)
15758+
* [Configuring Toolbox](https://mcp-toolbox.dev/documentation/configuration/)
1575915759

1576015760
### Install client SDK
1576115761

@@ -15794,9 +15794,9 @@ root_agent = Agent(
1579415794
Toolbox has a variety of features to make developing Gen AI tools for databases.
1579515795
For more information, read more about the following features:
1579615796

15797-
* [Authenticated Parameters](https://googleapis.github.io/genai-toolbox/resources/tools/#authenticated-parameters): bind tool inputs to values from OIDC tokens automatically, making it easy to run sensitive queries without potentially leaking data
15798-
* [Authorized Invocations:](https://googleapis.github.io/genai-toolbox/resources/tools/#authorized-invocations) restrict access to use a tool based on the users Auth token
15799-
* [OpenTelemetry](https://googleapis.github.io/genai-toolbox/how-to/export_telemetry/): get metrics and tracing from Toolbox with OpenTelemetry
15797+
* [Authenticated Parameters](https://mcp-toolbox.dev/documentation/connect-to/toolbox-sdks/python-sdk/core/#parameter-binding): bind tool inputs to values from OIDC tokens automatically, making it easy to run sensitive queries without potentially leaking data
15798+
* [Authorized Invocations:](https://mcp-toolbox.dev/documentation/connect-to/toolbox-sdks/python-sdk/core/#client-to-server-authentication) restrict access to use a tool based on the users Auth token
15799+
* [OpenTelemetry](https://mcp-toolbox.dev/documentation/connect-to/toolbox-sdks/python-sdk/core/#opentelemetry): get metrics and tracing from Toolbox with OpenTelemetry
1580015800

1580115801

1580215802
# Tools

0 commit comments

Comments
 (0)