@@ -18,7 +18,6 @@ This simplifies the process of incorporating external functionalities (like
18
18
Databases or APIs) managed by Toolbox into your GenAI applications.
19
19
20
20
<!-- TOC -->
21
-
22
21
- [ Overview] ( #overview )
23
22
- [ Which Package Should I Use?] ( #which-package-should-i-use )
24
23
- [ Available Packages] ( #available-packages )
@@ -52,6 +51,10 @@ Choosing the right package depends on how you are building your application:
52
51
Use this package if you are building your application using the LangChain or
53
52
LangGraph frameworks. It provides tools that are directly compatible with the
54
53
LangChain ecosystem (` BaseTool ` interface), simplifying integration.
54
+ * [ ` toolbox-llamaindex ` ] ( https://github.com/googleapis/mcp-toolbox-sdk-python/tree/main/packages/toolbox-llamaindex ) :
55
+ Use this package if you are building your application using the LlamaIndex framework.
56
+ It provides tools that are directly compatible with the
57
+ LlamaIndex ecosystem (` BaseTool ` interface), simplifying integration.
55
58
* [ ` toolbox-core ` ] ( https://github.com/googleapis/mcp-toolbox-sdk-python/tree/main/packages/toolbox-core ) :
56
59
Use this package if you are not using LangChain/LangGraph or any other
57
60
orchestration framework, or if you need a framework-agnostic way to interact
@@ -67,6 +70,7 @@ README for detailed installation and usage instructions:
67
70
| :------ | :---------- | :---------- | :---------------------- | :---------- | :---------
68
71
| ` toolbox-core ` | Framework-agnostic / Custom applications | Use directly / Custom | ` packages/toolbox-core/ ` | 📄 [ View README] ( https://github.com/googleapis/mcp-toolbox-sdk-python/blob/main/packages/toolbox-core/README.md ) | [ ![ PyPI version] ( https://badge.fury.io/py/toolbox-core.svg )] ( https://badge.fury.io/py/toolbox-core ) |
69
72
| ` toolbox-langchain ` | LangChain / LangGraph applications | LangChain / LangGraph | ` packages/toolbox-langchain/ ` | 📄 [ View README] ( https://github.com/googleapis/mcp-toolbox-sdk-python/blob/main/packages/toolbox-langchain/README.md ) | [ ![ PyPI version] ( https://badge.fury.io/py/toolbox-langchain.svg )] ( https://badge.fury.io/py/toolbox-langchain ) |
73
+ | ` toolbox-llamaindex ` | LlamaIndex applications | LlamaIndex | ` packages/toolbox-llamaindex/ ` | 📄 [ View README] ( https://github.com/googleapis/mcp-toolbox-sdk-python/blob/main/packages/toolbox-llamaindex/README.md ) | [ ![ PyPI version] ( https://badge.fury.io/py/toolbox-llamaindex.svg )] ( https://badge.fury.io/py/toolbox-llamaindex ) |
70
74
71
75
## Getting Started
72
76
@@ -90,6 +94,9 @@ To get started using Toolbox tools with an application, follow these general ste
90
94
91
95
# For LangChain/LangGraph integration
92
96
pip install toolbox-langchain
97
+
98
+ # For the LlamaIndex integration
99
+ pip install toolbox-llamaindex
93
100
```
94
101
95
102
3. ** Use the SDK:**
0 commit comments