Skip to content

Commit 254c818

Browse files
authored
docs: migrate documentation links to new docsite (#2947)
## Description This PR migrates all legacy documentation links pointing to `googleapis.github.io/genai-toolbox` to the new canonical documentation site at `https://mcp-toolbox.dev/`. This ensures that users accessing internal READMEs and guides are directed to the most up-to-date and comprehensive documentation resource.
1 parent b7d02be commit 254c818

File tree

5 files changed

+19
-19
lines changed

5 files changed

+19
-19
lines changed

DEVELOPER.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -285,7 +285,7 @@ tools.
285285
[temp-param]:
286286
https://github.com/googleapis/genai-toolbox/blob/v0.23.0/tests/tool.go#L454
287287
[temp-param-doc]:
288-
https://googleapis.github.io/genai-toolbox/resources/tools/#template-parameters
288+
https://mcp-toolbox.dev/documentation/configuration/tools/#template-parameters
289289
290290
#### Adding Documentation
291291

MCP-TOOLBOX-EXTENSION.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -237,7 +237,7 @@ SQL (e.g., self-hosted on-prem, on a VM, or in another cloud).
237237

238238
This extension can be used with any Google Cloud database to build custom
239239
tools. For more information, see the [MCP Toolbox
240-
documentation](https://googleapis.github.io/genai-toolbox/getting-started/introduction/).
240+
documentation](https://mcp-toolbox.dev/documentation/introduction/).
241241

242242
```bash
243243
gemini extensions install https://github.com/gemini-cli-extensions/mcp-toolbox

README.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
[![Go Report Card](https://goreportcard.com/badge/github.com/googleapis/genai-toolbox)](https://goreportcard.com/report/github.com/googleapis/genai-toolbox)
1010
[![License: Apache
1111
2.0](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0)
12-
[![Docs](https://img.shields.io/badge/Docs-MCP_Toolbox-blue)](https://googleapis.github.io/genai-toolbox/)
12+
[![Docs](https://img.shields.io/badge/Docs-MCP_Toolbox-blue)](https://mcp-toolbox.dev/)
1313
[![Discord](https://img.shields.io/badge/Discord-%235865F2.svg?style=flat&logo=discord&logoColor=white)](https://discord.gg/Dmm69peqjh)
1414
[![Medium](https://img.shields.io/badge/Medium-12100E?style=flat&logo=medium&logoColor=white)](https://medium.com/@mcp_toolbox)
1515

@@ -30,7 +30,7 @@ It serves a **dual purpose**:
3030
2. **Custom Tools Framework (Run-Time):** A robust framework to build specialized, highly secure AI tools for your production agents. Define structured queries, semantic search, and NL2SQL capabilities safely and easily.
3131

3232

33-
This README provides a brief overview. For comprehensive details, see the [full documentation](https://googleapis.github.io/genai-toolbox/).
33+
This README provides a brief overview. For comprehensive details, see the [full documentation](https://mcp-toolbox.dev/).
3434

3535
> [!NOTE]
3636
> This solution was originally named “Gen AI Toolbox for Databases” (github.com/googleapis/genai-toolbox) as its initial development predated MCP, but was renamed to align with the MCP compatibility.
@@ -88,15 +88,15 @@ You can use the Toolbox in any MCP-compatible IDE or client (e.g., Gemini CLI, G
8888
}
8989
```
9090

91-
2. Set the appropriate environment variables to connect, see the [Prebuilt Tools Reference](https://googleapis.github.io/genai-toolbox/reference/prebuilt-tools/).
91+
2. Set the appropriate environment variables to connect, see the [Prebuilt Tools Reference](https://mcp-toolbox.dev/documentation/configuration/prebuilt-configs/).
9292

9393
When you run Toolbox with a `--prebuilt=<database>` flag, you instantly get access to standard tools to interact with that database.
9494

9595
Supported databases currently include:
9696
- **Google Cloud:** AlloyDB, BigQuery, Cloud SQL (PostgreSQL, MySQL, SQL Server), Spanner, Firestore, Dataplex
9797
- **Other Databases:** PostgreSQL, MySQL, SQL Server, Oracle, MongoDB, Redis, Elasticsearch, CockroachDB, ClickHouse, Couchbase, Neo4j, Snowflake, Trino, and more.
9898

99-
For a full list of available tools and their capabilities across all supported databases, see the [Prebuilt Tools Reference](https://googleapis.github.io/genai-toolbox/reference/prebuilt-tools/).
99+
For a full list of available tools and their capabilities across all supported databases, see the [Prebuilt Tools Reference](https://mcp-toolbox.dev/documentation/configuration/prebuilt-configs/).
100100

101101
*See the [Install & Run the Toolbox server](#install--run-the-toolbox-server) section for different execution methods like Docker or binaries.*
102102

@@ -115,7 +115,7 @@ have multiple files, you can tell Toolbox which to load with the `--config
115115
tools.yaml` flag.
116116

117117
You can find more detailed reference documentation to all resource types in the
118-
[Resources](https://googleapis.github.io/genai-toolbox/resources/).
118+
[Resources](https://mcp-toolbox.dev/documentation/configuration/).
119119

120120
### Sources
121121

@@ -135,7 +135,7 @@ password: my-password
135135
```
136136

137137
For more details on configuring different types of sources, see the
138-
[Sources](https://googleapis.github.io/genai-toolbox/resources/sources).
138+
[Sources](https://mcp-toolbox.dev/documentation/configuration/sources/).
139139

140140
### Tools
141141

@@ -156,7 +156,7 @@ statement: SELECT * FROM hotels WHERE name ILIKE '%' || $1 || '%';
156156
```
157157
158158
For more details on configuring different types of tools, see the
159-
[Tools](https://googleapis.github.io/genai-toolbox/resources/tools).
159+
[Tools](https://mcp-toolbox.dev/documentation/configuration/tools/).
160160
161161
### Toolsets
162162
@@ -197,7 +197,7 @@ arguments:
197197
```
198198

199199
For more details on configuring prompts, see the
200-
[Prompts](https://googleapis.github.io/genai-toolbox/resources/prompts).
200+
[Prompts](https://mcp-toolbox.dev/documentation/configuration/prompts/).
201201

202202
---
203203

@@ -455,7 +455,7 @@ terminate signal (`ctrl+c` on most platforms).
455455

456456
For more detailed documentation on deploying to different environments, check
457457
out the resources in the [How-to
458-
section](https://googleapis.github.io/genai-toolbox/how-to/)
458+
section](https://mcp-toolbox.dev/documentation/deploy-to/)
459459

460460
---
461461

@@ -1021,7 +1021,7 @@ For more detailed instructions on using the Toolbox Core SDK, see the
10211021

10221022
To launch Toolbox's interactive UI, use the `--ui` flag. This allows you to test
10231023
tools and toolsets with features such as authorized parameters. To learn more,
1024-
visit [Toolbox UI](https://googleapis.github.io/genai-toolbox/how-to/toolbox-ui/).
1024+
visit [Toolbox UI](https://mcp-toolbox.dev/documentation/configuration/toolbox-ui/).
10251025

10261026
```sh
10271027
./toolbox --ui
@@ -1031,7 +1031,7 @@ visit [Toolbox UI](https://googleapis.github.io/genai-toolbox/how-to/toolbox-ui/
10311031

10321032
Toolbox emits traces and metrics via OpenTelemetry. Use `--telemetry-otlp=<endpoint>`
10331033
to export to any OTLP-compatible backend like Google Cloud Monitoring, Agnost AI, or
1034-
others. See the [telemetry docs](https://googleapis.github.io/genai-toolbox/how-to/export_telemetry/) for details.
1034+
others. See the [telemetry docs](https://mcp-toolbox.dev/documentation/monitoring/export_telemetry/) for details.
10351035

10361036
### Generate Agent Skills
10371037

@@ -1050,7 +1050,7 @@ Once generated, you can install the skill into the Gemini CLI:
10501050
gemini skills install ./skills/my-skill
10511051
```
10521052

1053-
For more details, see the [Generate Agent Skills guide](https://googleapis.github.io/genai-toolbox/how-to/generate_skill/).
1053+
For more details, see the [Generate Agent Skills guide](https://mcp-toolbox.dev/documentation/configuration/skills/).
10541054

10551055
---
10561056

@@ -1064,7 +1064,7 @@ The Public API includes the Toolbox Server (CLI, configuration manifests, and pr
10641064
- **Minor versions** are incremented for new features, including modifications to pre-built toolsets or beta features.
10651065
- **Patch versions** are incremented for backward-compatible bug fixes.
10661066

1067-
For more details, see our [Full Versioning Policy](https://googleapis.github.io/genai-toolbox/about/versioning/).
1067+
For more details, see our [Full Versioning Policy](https://mcp-toolbox.dev/reference/versioning/).
10681068

10691069
---
10701070

UPGRADING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ As part of this milestone, we have introduced several breaking changes and
77
deprecations that require updates to your configuration and code.
88

99
**📖 New Versioning Policy**
10-
We have officially published our [Versioning Policy](https://googleapis.github.io/genai-toolbox/dev/about/versioning/). Moving forward, we follow standard versioning conventions to classify updates:
10+
We have officially published our [Versioning Policy](https://mcp-toolbox.dev/reference/versioning/). Moving forward, we follow standard versioning conventions to classify updates:
1111
* **Major (vX.0.0):** Breaking changes requiring manual updates.
1212
* **Minor (v1.X.0):** New, backward-compatible features and deprecation notices.
1313
* **Patch (v1.0.X):** Backward-compatible bug fixes and security patches.
@@ -109,4 +109,4 @@ The following CLI flags are deprecated and will be removed in a future release.
109109

110110
* **Prebuilt Tools:** Toolsets have been resized for better performance.
111111
## 📚 Documentation Moved
112-
Our official documentation has a new home! Please update your bookmarks to [mcp-toolbox.dev](http://mcp-toolbox.dev).
112+
Our official documentation has a new home! Please update your bookmarks to [mcp-toolbox.dev](https://mcp-toolbox.dev).

docs/TOOLBOX_README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ The MCP Toolbox for Databases Server gives AI-powered development tools the abil
2020
> To always run the latest version, update the MCP server configuration to use:
2121
> ```npx -y @toolbox-sdk/server@latest```.
2222
23-
3. Create your [`tools.yaml` configuration file](https://googleapis.github.io/genai-toolbox/getting-started/configure/).
23+
3. Create your [`tools.yaml` configuration file](https://mcp-toolbox.dev/documentation/configuration/).
2424

2525
4. In the configuration window, enter the full absolute path to your `tools.yaml` file and click **Save**.
2626

@@ -49,4 +49,4 @@ Interact with your custom tools using natural language.
4949

5050
## Documentation
5151

52-
For more information, visit the [MCP Toolbox for Databases documentation](https://googleapis.github.io/genai-toolbox/getting-started/introduction/).
52+
For more information, visit the [MCP Toolbox for Databases documentation](https://mcp-toolbox.dev/documentation/introduction/).

0 commit comments

Comments
 (0)