Compare commits

..

2 Commits

Author SHA1 Message Date
github-actions[bot] 7e8efc6284 Release @llamaindex/tools@0.1.2 (#2048) 2025-06-30 11:40:54 +07:00
Wassim Chegham 0fcf65126d chore: export type MCPClientOptions (#2047)
Co-authored-by: Marcus Schiesser <marcus.schiesser@googlemail.com>
2025-06-28 10:55:07 +07:00
3 changed files with 9 additions and 2 deletions
+6
View File
@@ -1,5 +1,11 @@
# @llamaindex/tools
## 0.1.2
### Patch Changes
- 0fcf651: chore: export type MCPClientOptions
## 0.1.1
### Patch Changes
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "@llamaindex/tools",
"description": "LlamaIndex Tools",
"version": "0.1.1",
"version": "0.1.2",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
+2 -1
View File
@@ -59,7 +59,8 @@ type SSEMCPClientOptions = SSEClientTransportOptions & URLMCPOptions;
type StreamableHTTPMCPClientOptions = StreamableHTTPClientTransportOptions &
URLMCPOptions;
type MCPClientOptions =
// Export MCPClientOptions type for external consumers to use
export type MCPClientOptions =
| StdioMCPClientOptions
| SSEMCPClientOptions
| StreamableHTTPMCPClientOptions;