chore: applied suggestion from code suggestion

Co-authored-by: Anubhav Dhawan <anubhavdhawan@google.com>
This commit is contained in:
Harsh Jha
2026-02-12 20:25:37 +05:30
committed by GitHub
parent baca9735d6
commit e803e0047b

View File

@@ -3,7 +3,7 @@ title: "Adk"
type: docs
weight: 8
description: >
MCP Toolbox ADK SDK for integrating functionalities of MCP Toolbox into your apps.
MCP Toolbox SDK for integrating functionalities of MCP Toolbox into your ADK apps.
---
## Overview
@@ -13,7 +13,7 @@ The `toolbox-adk` package provides a Python interface to the MCP Toolbox service
## Installation
```bash
pip install toolbox-adk
pip install google-adk[toolbox]
```
## Usage
@@ -21,11 +21,11 @@ pip install toolbox-adk
The primary entry point is the `ToolboxToolset`, which loads tools from a remote Toolbox server and adapts them for use with ADK agents.
{{< notice note>}}
The `ToolboxToolset` in this package mirrors the `ToolboxToolset` in the [`adk-python`](https://github.com/google/adk-python) package. The `adk-python` version is a shim that delegates all functionality to this implementation.
> This package contains the core implementation of the `ToolboxToolset`. The `ToolboxToolset` provided in the [`google-adk`](https://github.com/google/adk-python/blob/758d337c76d877e3174c35f06551cc9beb1def06/src/google/adk/tools/toolbox_toolset.py#L35) package is a shim that simply delegates all functionality to this implementation.
{{< /notice >}}
```python
from toolbox_adk import ToolboxToolset
from google.adk.tools.toolbox_toolset import ToolboxToolset
from google.adk.agents import Agent
# Create the Toolset