kl-mcp-client 2.1.11__tar.gz → 2.1.12__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {kl_mcp_client-2.1.11 → kl_mcp_client-2.1.12}/PKG-INFO +1 -1
- kl_mcp_client-2.1.12/kl_mcp_client/__version__.py +1 -0
- {kl_mcp_client-2.1.11 → kl_mcp_client-2.1.12}/kl_mcp_client/asyncio/tools.py +2 -2
- {kl_mcp_client-2.1.11 → kl_mcp_client-2.1.12}/kl_mcp_client/tools.py +2 -2
- {kl_mcp_client-2.1.11 → kl_mcp_client-2.1.12}/kl_mcp_client.egg-info/PKG-INFO +1 -1
- {kl_mcp_client-2.1.11 → kl_mcp_client-2.1.12}/pyproject.toml +1 -1
- kl_mcp_client-2.1.11/kl_mcp_client/__version__.py +0 -1
- {kl_mcp_client-2.1.11 → kl_mcp_client-2.1.12}/README.md +0 -0
- {kl_mcp_client-2.1.11 → kl_mcp_client-2.1.12}/kl_mcp_client/__init__.py +0 -0
- {kl_mcp_client-2.1.11 → kl_mcp_client-2.1.12}/kl_mcp_client/asyncio/__init__.py +0 -0
- {kl_mcp_client-2.1.11 → kl_mcp_client-2.1.12}/kl_mcp_client/asyncio/client.py +0 -0
- {kl_mcp_client-2.1.11 → kl_mcp_client-2.1.12}/kl_mcp_client/client.py +0 -0
- {kl_mcp_client-2.1.11 → kl_mcp_client-2.1.12}/kl_mcp_client.egg-info/SOURCES.txt +0 -0
- {kl_mcp_client-2.1.11 → kl_mcp_client-2.1.12}/kl_mcp_client.egg-info/dependency_links.txt +0 -0
- {kl_mcp_client-2.1.11 → kl_mcp_client-2.1.12}/kl_mcp_client.egg-info/requires.txt +0 -0
- {kl_mcp_client-2.1.11 → kl_mcp_client-2.1.12}/kl_mcp_client.egg-info/top_level.txt +0 -0
- {kl_mcp_client-2.1.11 → kl_mcp_client-2.1.12}/setup.cfg +0 -0
- {kl_mcp_client-2.1.11 → kl_mcp_client-2.1.12}/tests/test_async_tools.py +0 -0
- {kl_mcp_client-2.1.11 → kl_mcp_client-2.1.12}/tests/test_tools.py +0 -0
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__VERSION__ = "2.1.12"
|
|
@@ -337,7 +337,7 @@ class MCPTools:
|
|
|
337
337
|
payload: ThirdPartyOpenRequest (optional)
|
|
338
338
|
"""
|
|
339
339
|
res = await self.client.call_tool(
|
|
340
|
-
"
|
|
340
|
+
"createBrowser",
|
|
341
341
|
payload or {},
|
|
342
342
|
)
|
|
343
343
|
return res.get("structuredContent", {})
|
|
@@ -348,7 +348,7 @@ class MCPTools:
|
|
|
348
348
|
- KHÔNG cần payload
|
|
349
349
|
"""
|
|
350
350
|
res = await self.client.call_tool(
|
|
351
|
-
"
|
|
351
|
+
"releaseBrowser",
|
|
352
352
|
{
|
|
353
353
|
"pod_name": pop_name
|
|
354
354
|
},
|
|
@@ -574,7 +574,7 @@ class MCPTools:
|
|
|
574
574
|
payload: map cho ThirdPartyOpenRequest
|
|
575
575
|
"""
|
|
576
576
|
return self.client.call_tool(
|
|
577
|
-
"
|
|
577
|
+
"createBrowser",
|
|
578
578
|
payload or {},
|
|
579
579
|
).get("structuredContent", {})
|
|
580
580
|
|
|
@@ -584,7 +584,7 @@ class MCPTools:
|
|
|
584
584
|
Release / stop browser runtime.
|
|
585
585
|
"""
|
|
586
586
|
return self.client.call_tool(
|
|
587
|
-
"
|
|
587
|
+
"releaseBrowser",
|
|
588
588
|
{
|
|
589
589
|
"pod_name": pop_name
|
|
590
590
|
},
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__VERSION__ = "2.1.11"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|