Skip to content

Commit cb77c59

Browse files
committed
Release 1.1.0
1 parent b84f4ad commit cb77c59

File tree

5 files changed

+18
-18
lines changed

5 files changed

+18
-18
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "klavis"
33

44
[tool.poetry]
55
name = "klavis"
6-
version = "1.0.1"
6+
version = "1.1.0"
77
description = ""
88
readme = "README.md"
99
authors = []

reference.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ client.mcp_server.call_tools(
7676
<dl>
7777
<dd>
7878

79-
**connection_type:** `typing.Optional[ConnectionType]` — The connection type to use for the MCP server. Default is SSE.
79+
**connection_type:** `typing.Optional[ConnectionType]` — The connection type to use for the MCP server. Default is STREAMABLE_HTTP.
8080

8181
</dd>
8282
</dl>
@@ -158,7 +158,7 @@ client.mcp_server.list_tools(
158158
<dl>
159159
<dd>
160160

161-
**connection_type:** `typing.Optional[ConnectionType]` — The connection type to use for the MCP server. Default is SSE.
161+
**connection_type:** `typing.Optional[ConnectionType]` — The connection type to use for the MCP server. Default is STREAMABLE_HTTP.
162162

163163
</dd>
164164
</dl>
@@ -265,7 +265,7 @@ client.mcp_server.create_server_instance(
265265
<dl>
266266
<dd>
267267

268-
**connection_type:** `typing.Optional[ConnectionType]` — The connection type to use for the MCP server. Default is SSE.
268+
**connection_type:** `typing.Optional[ConnectionType]` — The connection type to use for the MCP server. Default is STREAMABLE_HTTP.
269269

270270
</dd>
271271
</dl>

src/klavis/core/client_wrapper.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@ def __init__(
2020

2121
def get_headers(self) -> typing.Dict[str, str]:
2222
headers: typing.Dict[str, str] = {
23-
"User-Agent": "klavis/1.0.1",
23+
"User-Agent": "klavis/1.1.0",
2424
"X-Fern-Language": "Python",
2525
"X-Fern-SDK-Name": "klavis",
26-
"X-Fern-SDK-Version": "1.0.1",
26+
"X-Fern-SDK-Version": "1.1.0",
2727
}
2828
api_key = self._get_api_key()
2929
if api_key is not None:

src/klavis/mcp_server/client.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ def call_tools(
6161
The input parameters for the tool
6262
6363
connection_type : typing.Optional[ConnectionType]
64-
The connection type to use for the MCP server. Default is SSE.
64+
The connection type to use for the MCP server. Default is STREAMABLE_HTTP.
6565
6666
request_options : typing.Optional[RequestOptions]
6767
Request-specific configuration.
@@ -113,7 +113,7 @@ def list_tools(
113113
The full URL for connecting to the MCP server
114114
115115
connection_type : typing.Optional[ConnectionType]
116-
The connection type to use for the MCP server. Default is SSE.
116+
The connection type to use for the MCP server. Default is STREAMABLE_HTTP.
117117
118118
format : typing.Optional[ToolFormat]
119119
The format to return tools in. Default is MCP Native format for maximum compatibility.
@@ -169,7 +169,7 @@ def create_server_instance(
169169
The name of the platform associated with the user.
170170
171171
connection_type : typing.Optional[ConnectionType]
172-
The connection type to use for the MCP server. Default is SSE.
172+
The connection type to use for the MCP server. Default is STREAMABLE_HTTP.
173173
174174
request_options : typing.Optional[RequestOptions]
175175
Request-specific configuration.
@@ -504,7 +504,7 @@ async def call_tools(
504504
The input parameters for the tool
505505
506506
connection_type : typing.Optional[ConnectionType]
507-
The connection type to use for the MCP server. Default is SSE.
507+
The connection type to use for the MCP server. Default is STREAMABLE_HTTP.
508508
509509
request_options : typing.Optional[RequestOptions]
510510
Request-specific configuration.
@@ -564,7 +564,7 @@ async def list_tools(
564564
The full URL for connecting to the MCP server
565565
566566
connection_type : typing.Optional[ConnectionType]
567-
The connection type to use for the MCP server. Default is SSE.
567+
The connection type to use for the MCP server. Default is STREAMABLE_HTTP.
568568
569569
format : typing.Optional[ToolFormat]
570570
The format to return tools in. Default is MCP Native format for maximum compatibility.
@@ -628,7 +628,7 @@ async def create_server_instance(
628628
The name of the platform associated with the user.
629629
630630
connection_type : typing.Optional[ConnectionType]
631-
The connection type to use for the MCP server. Default is SSE.
631+
The connection type to use for the MCP server. Default is STREAMABLE_HTTP.
632632
633633
request_options : typing.Optional[RequestOptions]
634634
Request-specific configuration.

src/klavis/mcp_server/raw_client.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def call_tools(
5656
The input parameters for the tool
5757
5858
connection_type : typing.Optional[ConnectionType]
59-
The connection type to use for the MCP server. Default is SSE.
59+
The connection type to use for the MCP server. Default is STREAMABLE_HTTP.
6060
6161
request_options : typing.Optional[RequestOptions]
6262
Request-specific configuration.
@@ -128,7 +128,7 @@ def list_tools(
128128
The full URL for connecting to the MCP server
129129
130130
connection_type : typing.Optional[ConnectionType]
131-
The connection type to use for the MCP server. Default is SSE.
131+
The connection type to use for the MCP server. Default is STREAMABLE_HTTP.
132132
133133
format : typing.Optional[ToolFormat]
134134
The format to return tools in. Default is MCP Native format for maximum compatibility.
@@ -208,7 +208,7 @@ def create_server_instance(
208208
The name of the platform associated with the user.
209209
210210
connection_type : typing.Optional[ConnectionType]
211-
The connection type to use for the MCP server. Default is SSE.
211+
The connection type to use for the MCP server. Default is STREAMABLE_HTTP.
212212
213213
request_options : typing.Optional[RequestOptions]
214214
Request-specific configuration.
@@ -671,7 +671,7 @@ async def call_tools(
671671
The input parameters for the tool
672672
673673
connection_type : typing.Optional[ConnectionType]
674-
The connection type to use for the MCP server. Default is SSE.
674+
The connection type to use for the MCP server. Default is STREAMABLE_HTTP.
675675
676676
request_options : typing.Optional[RequestOptions]
677677
Request-specific configuration.
@@ -743,7 +743,7 @@ async def list_tools(
743743
The full URL for connecting to the MCP server
744744
745745
connection_type : typing.Optional[ConnectionType]
746-
The connection type to use for the MCP server. Default is SSE.
746+
The connection type to use for the MCP server. Default is STREAMABLE_HTTP.
747747
748748
format : typing.Optional[ToolFormat]
749749
The format to return tools in. Default is MCP Native format for maximum compatibility.
@@ -823,7 +823,7 @@ async def create_server_instance(
823823
The name of the platform associated with the user.
824824
825825
connection_type : typing.Optional[ConnectionType]
826-
The connection type to use for the MCP server. Default is SSE.
826+
The connection type to use for the MCP server. Default is STREAMABLE_HTTP.
827827
828828
request_options : typing.Optional[RequestOptions]
829829
Request-specific configuration.

0 commit comments

Comments
 (0)